Hi @Anonymous ,
If I read you right, you want to show the data differently depending on the selected dropdown value in Dropdown-1 (top dropdown).
1. if user select "agent" the data should be pulled from table7
2. if user select "back office" the data should be pulled from table8
If my understanding is right onChange property use the below formula:
if(topdropdown.selected.value="agent", ClearCollect(collTableData,Filter(table7,Title="agent"),
if(topdropdown.selected.value="backOffice", ClearCollect(collTableData,Filter(table8,Title="backOffice")))
Assign that collection to a gallery to see the results.
I hope this resolved your issue if you see any challenge/need further help please let me know I am always happy to do it for my community.
Regards,
Krishna
If this post helps you give a 👍 and if it solved your issue consider Accept it as the solution to help the other members find it more.