stuckagain22
Board Regular
- Joined
- Aug 4, 2006
- Messages
- 183
I have a macro that runs on my sheet that clears the value of a cell in a hidden row. When I click on the object that launches the macro the whole screen moves down to where the hidden value is. It takes about .5 seconds to run the macro. I just don't like how the screen jumps down and then up again. I was wondering if there is any way to clear a cell value without "physically" jumping to the cell?
Here is my current code:
I would appreciate it if someone could advise if this is possible or not.
Thank you.
Here is my current code:
Code:
Sub LEVELS_RESETQUERY()
Sheets("Levels").Select
Range("D184").Select
ActiveCell.FormulaR1C1 = "1"
Sheets("Levels").Select
Range("D3:D5").Select
End Sub
I would appreciate it if someone could advise if this is possible or not.
Thank you.