Hi.
Im struggling to filter data i've connected to my PowerApp and im hoping someone here can help me see a solution.
In this app im using a built in form that are connected to two MS lists. One list is called registrated errors while the other list is called contracts and suppliers. In the list registrated errors i have two columns that is connected through lookup in the list contracts and suppliers.
These columns are called supplier and contractname. When i connected the list registrated errors to the built in form in PowerApps it searches for the suppliers name and contract from list contracts and suppliers as it should. So the data is showing correctly but i want to filter this data so the user wont get all the contractnames in powerapps. They can search for a contract but i want to narrow it down for the user because it can often be 10-20 contracts on one supplier. Additionally the names on the contracts often are similar to the different suppliers as well.

Above is a small screenshot from the app where one supplier is selected and the data in contract is where i now just want to show all the rows from the list contracts and suppliers that has the name of the selected supplier.
I have though tried this formula in the combobox named contract:
Filter(Choices([@'Kontrakter/Leverandører'].Konktrakt);Concat('Leverandører med oversikt kontrakter i konsernet';Leverandør;",") = DataCardValue30.Selected.Value) - Datacardvalue30 is the combobox named supplier
It seems to work, it does not show anny error messages and i get the data i need according to Powerapps when i hover the formula but the concat-data dont seem to be validated against the selected value. The contracts will then not show in the combobox named contracts because i think that the formulas condition is not met.
Hopefully someone in here can see what im missing or doing wrong here.