I am trying to have an input box prompt for a cell number, and then select that cell on all of the sheets in my workbook. The sheet names and number of sheets will vary each time. This is what I have so far, but of course it is making me enter the cell number multiple times for each sheet and I would rather only have to enter it once.
Code:
Sub SelectCells()
Application.ScreenUpdating = False
Dim i As Integer
Dim currentsheet As Worksheet
For i = 1 To ActiveWorkbook.Worksheets.Count
Set currentsheet = ActiveWorkbook.Worksheets(i)
Worksheets(i).Activate
Dim MyRange As Range
Set MyRange = Application.InputBox(Prompt:= _
"Please enter the cell number you would like to select.", _
Title:="SPECIFY CELL", Type:=8)
MyRange.Select
Next i
Application.ScreenUpdating = True
Sheets("Total IX Series").Select
End Sub