Hello there!
I'm trying to perform LookUp on a "settings" table with multiple conditions & am observing strange behavior.
LookUp (
settings,
dropdown1.Selected.Value in Column1.Value
&& dropdown2.Selected.Value in Column2.Value
&& dropdown3.Selected.Value in Column3.Value
&& (dropdown4.Selected.Value in Column4.Value || "All" in Column4.Value)
)
I'm trying to look up the record that matches the dropdowns to column values except in case of dropdown4, where the condition becomes an OR within the AND (all the other conditions must be met and either dropdown4's selected value is in column 4 OR "All" is in Column 4 - one or the other needs to return true). everything works right up until the last line.
Is my syntax correct for what I'm trying to do? Any suggestions?
Thanks in advance!