Hello. I have Gallery being used for data entry with multiple dropdown and text input fields. I have 1 text input field that I want to set the Visible property for based on a SharePoint List column value, and to get the correct record from the SharePoint List I need to filter it on 2 of the Gallery dropdown selections. Here's what I've entered in the Visible property box for my text input field:
If(LookUp(Filter(Daily_Sheet_Filters, STATE=ddState_2.Selected.Result && ICODE = ddICode_2.Selected.Result),Anchored, true), true, false)
There's no error message on the formula, but the field's Visible property is remaining 'false' even when I select a STATE and ICODE in the designated Gallery dropdowns that have a corresponding "true" value in the SharePoint List's Anchored column. In SharePoint, the Anchored column presents as a checkmark (or no checkmark) and believe Power Apps sees that as true/false, right?
Thank you for any guidance.