drewbsking
New Member
- Joined
- Nov 3, 2011
- Messages
- 34
Is there a way for VBA to prompt the user for a new selection?.
For exmaple,
For exmaple,
Code:
Sub BlankRow()
The reason I need this is because I am already in a macro and can not change selection on screen and I don't want to exit routine to make new selection (last line of code).
'I need to be able to select new active cell!
ActiveCell.EntireRow.Select
Selection.ClearContents
ActiveCell.EntireRow.Interior.ColorIndex = 1
ActiveCell.Offset(1, 0).Select
Edit.Show
End Sub