I have this simple formula in Cell A1
=10*Round(B1/10,0)
I know how to enter this in VBA, i simply write:
Range("A1").Formula = "=10*Round(B1/10,0)"
Now, what if I don't know the cell whose number I want to round? In other words, i have an integer variable in my code, N, that can take on multiple values, and I want to round the number in row number N of column B.
How do I write this? I tried:
Range("A1").Formula = "=10*Round(B" & N & " & "/10",0)"
But this doesn't work. Tried multiple layouts for the quotes but without success.
Can anyone let me know:
- How to enter that simple formula? and more importantly
- Provide some link/reference that would help me with entering other formulas in the future?
Thanks
Range("A1").Formula = "=10*Round(B" & N & "/10,0)"– Excellll Apr 16 '12 at 17:14=ROUND(B1,-1)– barry houdini Apr 16 '12 at 17:24