Deuce Bucksman
Board Regular
- Joined
- Jan 17, 2011
- Messages
- 102
Hello,
I'm trying to multiply all cells until they are empty by a negtive number. Can anyone tell me what is wrong with my code below? Really appreciate your help. Thanks!
Sub macrotest()
Do Until IsEmpty(ActiveCell)
ActiveCell = ActiveCell * -1
Loop
End Sub
I'm trying to multiply all cells until they are empty by a negtive number. Can anyone tell me what is wrong with my code below? Really appreciate your help. Thanks!
Sub macrotest()
Do Until IsEmpty(ActiveCell)
ActiveCell = ActiveCell * -1
Loop
End Sub