I have a userform where I want to display data from a spreadsheet. The spread sheet is an input interface and the calculations will be displayed on my useform. My problem is to fetch the data. I have tried the code below, but what hapeens is that te correct data only appears if the user clicks on the label from the form. I need it to automatically load when i load the form. Where am I going wrong?
Private Sub Label3_Click()
Label3.Caption = Sheets("mysource").Range("o3")
End Sub