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 / Concatenate value from...
Power Apps
Unanswered

Concatenate value from same column

(0) ShareShare
ReportReport
Posted on by 16

Hi

I have below code that generate a table that look like below:

 

Wilder16261626_1-1650499422161.png

 

 

Sort(
 Filter(
 INCO_REQUESTS;
 Status = "Submitted for Action" And IsBlank(Email)
 );
 Submitted_Time;
 Ascending
 )

 

 

What i'm looking for is to be able to concatenate "First_name" column based on "Last_name" column.

 

So if we look at the table above, we have 2 time "Carlson". So both first name would get concatenated separated by a comma like below:

Wilder16261626_2-1650499475189.png

How can this be done?

 

Thank you for your help.

Categories:
I have the same question (0)
  • WarrenBelz Profile Picture
    156,384 Most Valuable Professional on at

    Hi @Wilder16261626 ,

    Not easily, but the below should work

    AddColumns(
     GroupBy(
     Sort(
     Filter(
     INCO_REQUESTS;
     Status = "Submitted for Action" && Email = Blank()
     );
     Submitted_Time
     );
     "LastName";
     "Data"
     );
     "FirstName";
     If(
     CountRows(Data) > 1;
     With(
    	 {
     wFirst:
     Concat(
     Data;
     First_name & ","
     )
     };
     Left(
     wFirst;
     Len(wFirst) - 1
     );
     First(Data).First_name
     )
     );
     "Status"
     First(Data).Status
    )

     

    Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.

    Visit my blog Practical Power Apps

  • Wilder16261626 Profile Picture
    16 on at

    Thanks WarrenBelz

    I will need to work it out a little, and will get back to you once working or if i have questions.

  • Wilder16261626 Profile Picture
    16 on at

    Hi WarrenBelz, I did not have the chance to make it work yet, but will let you know once i'm able to. 

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 401 Most Valuable Professional

#2
11manish Profile Picture

11manish 201 Super User 2026 Season 2

#3
MS.Ragavendar Profile Picture

MS.Ragavendar 128 Super User 2026 Season 2

Last 30 days Overall leaderboard