Hello, So i am working on a power apps app. I have a table called workshop and a table called Language and a table wworkshop_language since the relation between language and workshop is many to many. I have a gallery and i am displaying the workshop_language table in the gallery. However I have a column where i want to display the languages of each workshop doing a join between the language_workshop table and the languages table. I wrote this code but it does not work :
Concatenate(
Filter(
Language;
ID = ThisItem.LanguageID).LanguageName
; ",")