Please forgive me if I am asking a question that has been posted before; I did a search and couldn’t find anything that directly related to my issue.
Basically what I am trying to do is to capture a specific address from an Excel Input Box (as opposed to the VBA type). Here is the code I am using:
Set RInput = Application.InputBox _
(Prompt:=”Enter the Row Input Cell:”, _
Title:=”Row Input Cell”, _
Type:=8)
What I want RInput to return is the cell address the user either types or clicks (it would be a single cell). Instead it is returning the contents of the cell.
What am I doing wrong?