I wrote a script to ask for user input. I know how to write the script to enter it into one cell or enter it into every empty cell at the end of the row. What I don't know is how to write it so that the user input value is inputted in one cell on two separate sheets. Can someone help me re-write this code to do that?
Sub AddText()
Dim myRange As String
myRange = Application.inputbox("Enter Item Number", "1")
Range("S1").Value = myRange
End Sub