Hi,

Ive made a major noob oversight

please could someone advise me how to prevent my useform form pulling data from other open workbooks. ive set the useform workbook to xlminimized, so i expect that this is allowing this to happen, but, i need the xlminimized to stay really.

how would i change this example to prevent my issue

[VBA]Private Sub SpinCalls_Spinup()
Application.ScreenUpdating = False
Sheets("Sheet1").Range("C8").Value = Sheets("Sheet1").Range("C8").Value + 1
LblCalls.Caption = Sheets("sheet1").Range("C8").Value
LblBox1.Caption = Sheets("sheet1").Range("D10").Text
LblBox2.Caption = Sheets("sheet1").Range("E10").Text
LblBox3.Caption = Sheets("sheet1").Range("F10").Text
LblAcwDay.Caption = Sheets("sheet1").Range("G10").Text
Update
End Sub
Private Sub SpinCalls_Spindown()
Application.ScreenUpdating = False
Sheets("Sheet1").Range("C8").Value = Sheets("Sheet1").Range("C8").Value - 1
LblCalls.Caption = Sheets("sheet1").Range("C8").Value
LblBox1.Caption = Sheets("sheet1").Range("D10").Text
LblBox2.Caption = Sheets("sheet1").Range("E10").Text
LblBox3.Caption = Sheets("sheet1").Range("F10").Text
LblAcwDay.Caption = Sheets("sheet1").Range("G10").Text
Update
End Sub[/VBA]