MAMIBUSSOL
Board Regular
- Joined
- Jun 2, 2011
- Messages
- 95
What wrong with this code?
it is changing the formating for the first cell in the list but it is not changing subsequent rows, I don't understand why not
Code:
Range("A3:A388").Select
For A = 1 To 18
ActiveCell.Offset(0, B + 2).NumberFormat = "$#,##0.00"
ActiveCell.Offset(0, B + 4).NumberFormat = "$#,##0.00"
B = B + 7
Next A
it is changing the formating for the first cell in the list but it is not changing subsequent rows, I don't understand why not