Hello,
I have 2 different lists, ListA has a LookUp column to 'Vendor ID' (Single Text Column) column in ListB. I've created a form for ListA which will be filtering as we fill it out. Once we have selected a 'Vendor Name' in our form, the 'Vendor ID' ComboBox Items should be filtered by looking that person's name on ListB.
Filter(
ListB,
'Vendor Name' = DataCardValue11.Selected.Value
).'Vendor ID'
I've tried this and I do get the filtered options correctly. However, when I submit the form, the cell in the SharePoint list is empty. If I use the default option the SharePoint list works, but I am not able to implement the filter functionality.
Choices([@'ListA'].'Vendor ID')
Any help would be appreciated, thanks!