Prompt for new Active Cell

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,

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
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
Maybe like this

Code:
Dim r As Range
'I need to be able to select new active cell!

ActiveCell.EntireRow.ClearContents
ActiveCell.EntireRow.Interior.ColorIndex = 1
Set r = Application.InputBox("Select a cell", Type:=8)
r.Select
 
Upvote 0
ah ha! That's what I needed.

Now that I see it I should have known how to use that because I have used the "Set r = Application.InputBox("Select a cell", Type:=8)" elsewhere in my project but used the r in a different way.

Thanks for your help!
 
Upvote 0

Forum statistics

Threads
1,215,167
Messages
6,123,401
Members
449,098
Latest member
ArturS75

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top