web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Apps / JOIN on tables in powe...
Power Apps
Unanswered

JOIN on tables in power apps gallery

(0) ShareShare
ReportReport
Posted on by 4

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
; ",")

 

Categories:
I have the same question (0)
  • ZUdeepa Profile Picture
    6 on at

    Explain more plz

  • LaurensM Profile Picture
    12,516 Moderator on at

    Hi @Malek007,

     

    You are actually very close! Concatenate is used to merge strings together:

     

    Concatenate("Text1"; "Text2")

     

    If you want to concatenate the column values of multiple rows with a separator, use Concat:

     

    Concat(
     Filter(
     Language;
     ID = ThisItem.LanguageID
     );
     LanguageName;
     ","
    )

     

    If this solves your question, would you be so kind as to accept it as a solution & give it a thumbs up.

    Thanks!

  • Dush_S Profile Picture
    92 on at

    Hii, @Malek007 

    try this,

    insert a label to the gallery and type the below code according to your data.

     

    Lookup(YourlworkshopListName,ThisItem.LanguageID=LanguageID,LanguageName

  • LaurensM Profile Picture
    12,516 Moderator on at

    @Malek007,

     

    As an addition to my previous code, we will have to add the workshop_language table as well in order to receive all language names. The code below will assume that this code is written in a label within the Workshop gallery.

     

    Concat(
     //List all languages linked to this workshop
     ForAll(
     //Adjust the link between workshop_language and workshop (workshopIDColumn)
     Filter(workshop_language; workshopIDColumn = ThisItem.ID) As Main;
     LookUp(
     Language;
     ID = Main.LanguageID;
     LanguageName
     )
     );
     Value;
     ", "
    )

     

    I hope this helps!

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Season of Sharing Community Challenge Winners!

Congratulations to our community stars!

Kudos to our 2025 Community Spotlight Honorees

Expanding mentorship, skilling, and AI innovation

Congratulations to the July Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 358 Most Valuable Professional

#2
11manish Profile Picture

11manish 207 Super User 2026 Season 2

#3
MS.Ragavendar Profile Picture

MS.Ragavendar 150 Super User 2026 Season 2

Last 30 days Overall leaderboard