I have 2 Sharepoint Lists. List A contains my primary data, where column x has repeat values. List B contains the same values as column x in the Title column, but only once. My Combobox "Items" formula is:
Distinct(Filter('List A', Status.Value="Approved", 'Item Title'=Item_Selected, LookUp(List B',Title='Columnx', 'Archived?'.Value)="No"),Title)
This is not giving me any errors, but returns blank. If I run, Distinct(Filter('List A', Status.Value="Approved", 'Item Title'=Item_Selected), Title) it works fine. I know it would be better to have a linked column between the two but these aren't my list, so I am somewhat limited in the changes I can make.
Thoughts on how to repair this?