Thread
:
Putting a formula in the first empty cell in a row
View Single Post
#
5
Posted to microsoft.public.excel.programming
Don Guillett
external usenet poster
Posts: 10,124
Putting a formula in the first empty cell in a row
Thanks
--
Don Guillett
SalesAid Software
"JLGWhiz" wrote in message
...
Don, he wanted the first empty in row 3, so instead of:
LR=cells(1,"b").end(down).row+1
Try this:
LC = Cells(3,1).End(xlToRight).Column + 1
Cells(3, LC) .FormulaR1C1 = "=SUM(R[1]C[-2]:R[65535]C[-2])"
"Don Guillett" wrote:
LR=cells(1,"b").end(down).row+1
or you may like this better
LR=cells(rows.count,"b").end(up).row+1
Range("B" & lr).FormulaR1C1 = "=SUM(R[1]C[-2]:R[65535]C[-2])"
--
Don Guillett
SalesAid Software
"timmulla" wrote in message
...
Can anyone help me with code that can put a formula in the first empty
cell
in a row? Basically, I want to replace the B3 in the following formula
so
that it will put the formula in the first empty cell in row 3. I'm
trying
to
make the following formula dynamic.
Range("B3").FormulaR1C1 = "=SUM(R[1]C[-2]:R[65535]C[-2])"
any help would be appreciated.
--
Regards,
timmulla
Reply With Quote
Don Guillett
View Public Profile
Find all posts by Don Guillett