
I'm trying to concat the material description from my Excel Table named "Table1" by filtering the table by Item ID = DataCardValue10.Text and the PO Item selected from the combobox(which you can see in the fig).
= Concat(Filter(Table1, 'PO.Item' in ComboBox.SelectedItems, 'PO.No.' = DataCardValue10.Text), 'Material Description', " & ")
This is the formula I used but it is giving me no data while the data exists in the Excel Sheet.
Please help me with this.