Is there a way to do the following:
1. run the macro below through to the end
2. run it a second time, but this time the default of the inputbox is set to whatever the user had typed in the first time.
Thanks!
![]()
Sub Macro1() Dim sFindThis As String Dim sDef As String sDef = "This is the first-run default string" sFindThis = InputBox("User Input: ", "Test Input", sDef) End If End Sub
Bookmarks