Hi there,
I have a user for which i would like to have get information from a cell in another sheet. The below code does not seem to work. it loads but no information from the cell range?
Private Sub PPMB1()
UserForm1.Show
TextBox1 = Worksheets("Database").Range("A4")
TextBox2 = Worksheets("Database").Range("B4")
TextBox3 = Worksheets("Database").Range("S4")
End Sub
thanks
Runner77