I need to work on cell by activating it but another cell in another sheet being shown, so before showing the userform ScreenUpdating is set to false. in the userform when one check box is selected below code will run to switch between sheets so that some data be selected from sheet1 and then showing sheet2 while the previous cell is still activated. These are the sheets i need to switch between
Application.ScreenUpdating = True
Sheets("Sheet1").Select
Set rRange = Application.InputBox(Prompt:= _
"Please select the Ticket ID with your Mouse.", _
Title:="Title", Default:="", Type:=8)
Sheets("Sheet2").Activate
Application.ScreenUpdating = false
Sheets("Sheet1").Activate ' previous cell row number is stored in Sheets("Sheet2").Range("A1")
Sheets("Sheet1").Cells(Sheets("Sheet2").Range("A1").Value, Sheets("Sheet1").Rows(1).Find("head1", , xlValues, xlWhole).Column).Activate