Skip to main content

Notifications

Community site session details

Community site session details

Session Id :
Power Apps - Building Power Apps
Unanswered

Concat() stopped working when I changed from internal list to SharePoint

(0) ShareShare
ReportReport
Posted on by 5

Hey,

 

I recently had some help with getting a combobox to list its selected items as "X, Y and Z". I had this bit of code listed for me, but I've since changed from a manual list of items to a SharePoint list. After this change, it gives me an error line under the entire formula. I'm assuming Concat can't work for a single column list? Services is the name of my list in SharePoint, and all of my items are listed in the Title column. I've been staring at this for days and tweaking, does anyone know how to fix this up?

 

With(
{ListLength: CountRows(Services)},
If(
ListLength > 1,
Concat(
FirstN(
Services,
ListLength - 1
),
Value,
", "
) & " and " & Last(Services).Value,
First(Services).Value
)
  • EddieE Profile Picture
    4,641 Super User 2025 Season 1 on at
    Re: Concat() stopped working when I changed from internal list to SharePoint

    @garrettswett 

    Try changing 'Value' to the column name in your SharePoint List. I think this will work?

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

Paul Stork – Community Spotlight

We are honored to recognize Paul Stork as our July 2025 Community…

Congratulations to the June Top 10 Community Leaders!

These are the community rock stars!

Announcing the Engage with the Community forum!

This forum is your space to connect, share, and grow!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 791 Most Valuable Professional

#2
MS.Ragavendar Profile Picture

MS.Ragavendar 410

#3
mmbr1606 Profile Picture

mmbr1606 275 Super User 2025 Season 1