What I have:
I have 2 textboxes on a screen. i'm trying to change the values in the textboxes based on the result of the lookup text
Looking into sql server table:
if RBK_FVP.Text = LOOKUP_EMAIL_ADDRESS in the sql table then
make RBK_FVP.Text= RBK_RSVP.Text
else
RBK_FVP.Text = RBK_FVP.Text
being fired off from a onChange event in another textbox :
If(!IsBlank(
LookUp(
t_escalation_email_exceptions,
RBK_FVP.Text = LOOKUP_EMAIL_ADDRESS
)),
RBK_FVP.Text= RBK_RSVP.Text,
RBK_FVP.Text = RBK_FVP.Text)
Thanks
dave