Hi,
I have this small line of code for an error message on the visible property of a label.
If(DataCardValue4_1.Selected.Email <> User().Email, true)
Its looking at datacardvaue1_1... If the value does not equal the user logged in, then the error message is shown.
I have several items. some items dont have a value, e.g. datacardvalue4_1 = blank... yet the condition above it met
How i add an extra bit of code to say, if datacardvalue4_1 <> user()email.email & datacardvalue4_1 IS NOT Blank, then true.
i dont know how to incorporate the AND into the if statement
Thanks