sufianmalik
Board Regular
- Joined
- May 7, 2002
- Messages
- 128
Hi
I have a total in column DV
I would like fill handle to copy this to the left until it reaches column D, anyone tell me how?!
The other way could be to check the cell above until it has a text value rather than number?
Sub fill_total()
ActiveCell.Copy
Do Until ActiveCell.Columns(4)
ActiveCell.Offset(0, -1).PasteSpecial
Loop
End Sub
I have a total in column DV
I would like fill handle to copy this to the left until it reaches column D, anyone tell me how?!
The other way could be to check the cell above until it has a text value rather than number?
Sub fill_total()
ActiveCell.Copy
Do Until ActiveCell.Columns(4)
ActiveCell.Offset(0, -1).PasteSpecial
Loop
End Sub