Hi,
I plan to have a multi-layer workbook with User Forms passing an "If, Then" argument text answer from UserForm1 to UseForm2 TextBox after UserForm1 pulls data and closes.
What am I missing?
UserForm1:
UserForm2:
I plan to have a multi-layer workbook with User Forms passing an "If, Then" argument text answer from UserForm1 to UseForm2 TextBox after UserForm1 pulls data and closes.
What am I missing?
UserForm1:
Code:
Public Fi As String
Private Sub LEVEL1_CB_Click()
'Dim Fi As String
'Fi = UserForm2.MLevelTB.Value
If True Then
Fi = "Initial Look"
MsgBox " This will place GUI at depth for Monday meeting", vbInformation + vbOKOnly, "Setting Level of Depth of Entry..."
'Pulling data
Call GetWorkbook
Call WholeEnchilada
End If
UserForm2.Show
End Sub:
UserForm2:
Code:
Private Sub MLevelTB_Change()
'Dim Fi As String
If MLevelTB.Value <> "" Then
Else
MLevelTB.Value = Fi
End If
End Sub
Last edited: