Hi, I have a dropdown reading data from 2 diferent lists. On both lists there are items that are the same, but i need to only show one of them (it doesnt matter which one). The dropdown looks for the ID column of the user executing the app. T
This is working, the only thing is that is showing duplicated items when they exists on both lists (and i tried to add a distinct at the very beginning but can't make it work).
Concatenate(
Distinct(
Filter(
List_1; EMAIL = User().Email); ID);
Distinct(
Filter(
List_2; EMAIL = User().Email);ID))
Any help is welcome.