Im trying to come up with an inputbox such as:name = inputbox("enter 1 for "Range ("c1")", enter 2 for "range("c2").")I plan to do a if statement to refer to "enter 1" or "enter 2" in acell.Does anyone know the correct format for this?
How about something like:Sub TEST()Dim WhichOne As StringWhichOne$ = InputBox("Enter 1 for Range(""C1"") or 2 for Range(""C2"")", _"Input required")MsgBox WhichOne$End Sub