I have a formula that is supposed to find a name in a table and return a "Yes" if the name is in the table, or a "No" if the name is not on the table. When I use my Table_Audits the formula works, but it does not work with my Table_Records. These tables are exactly the same except in different excel workbooks. The app submits audits to Table_Audits and then the records are moved to Table_Records and deleted from Table_Audits. Is the issue the separate workbook?
Working Text formula on a label in a gallery: If(ThisItem.Student in Table_Audits.Student, "Yes","No")
Non-working Text formula on a label in a gallery: If(ThisItem.Student in Table_Records.Student, "Yes","No")
Working Text formula on a label referencing a combo box: If(cboxSTUDENTcnt.Selected.Student in Table_Audits.Student, "Yes","No")
Non-working Text formula on a label referencing a combo box: If(cboxSTUDENTcnt.Selected.Student in Table_Records.Student, "Yes","No")