mykulpasskwa
Board Regular
- Joined
- Mar 20, 2018
- Messages
- 66
I have a multipage with a label on page 1. I want the label to reflect what is in cell B5, but it doesn't do anything no matter what I try. Any ideas?
Code:
Private Sub FeesForm_Initialize()
Dim ws As Worksheet
MultiPage1.pgTerm1.lblTerm.Caption = ws.Cells("b5")
End Sub