I am trying to make a conditional statement that will basically say if field1 + field2 = "string" then do some stuff... i am pretty sure i have the stuff part right but i dont think i have the conditional statement correct... this is what i have
txtTeam.Visible = True
If ([GuestFirstName] + [GuestLastName] = "Angela Cockrill") Then
[LifetimeTxt] = "Trips of a Lifetime!"
txtTeam.ForeColor = vbOrange
txtTeam.FontSize = 14
txtTeam.FontBold = True
Else
txtTeam.Visible = False
txtTeam.ForeColor = 0
End If