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

Notifications

Announcements

Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Apps / Multiple delimiter to...
Power Apps
Suggested Answer

Multiple delimiter to rows

(1) ShareShare
ReportReport
Posted on by 19
Hi all,
I have this sharepoint list and I need to transform the nmResponsavel and mailResponsavel fields into lines, they are multivalued fields separated by ";"
 
The goal is showing how many items for each user, as it:
 
How can I do it? Using WITH formula or a Collection?
 
 
Categories:
I have the same question (0)
  • Suggested answer
    Nandit Profile Picture
    1,568 Moderator on at
    Hi 
     
    I have managed to achieve it but I am trying to create a better code for this. 
    Here;s my data in a collection (Data) :
     
    Here's my code on a button:
    Clear(colUsers);
    Clear(colEmails);
    Clear(colUsers2);
    Clear(colEmails2);
    ForAll(
        Data As Item,
        With(
            {
                Users: Split(
                    Item.nmResponsavel,
                    "; "
                ),
                Emails: Split(
                    Item.mailResponsavel,
                    "; "
                )
            },
            //Collect Users
            Collect(
                colUsers,
                Users
            );
            //Collect Emails
            Collect(
                colEmails,
                Emails
            )
        )
    );
    //Add Row Number
    ClearCollect(
        colUsers,
        ForAll(
            Sequence(CountRows(colUsers)),
            Patch(
                Last(
                    FirstN(
                        colUsers,
                        Value
                    )
                ),
                {RowNumber: Value}
            )
        )
    );
    //Add Row Number
    ClearCollect(
        colEmails,
        ForAll(
            Sequence(CountRows(colEmails)),
            Patch(
                Last(
                    FirstN(
                        colEmails,
                        Value
                    )
                ),
                {RowNumber: Value}
            )
        )
    );
    //Change Column Name to User
    ClearCollect(
        colUsers2,
        RenameColumns(
            colUsers,
            Value,
            User
        )
    );
    //Change Column Name to Email
    ClearCollect(
        colEmails2,
        RenameColumns(
            colEmails,
            Value,
            Email
        )
    );
    //Final Collection with Email and Blank User Column
    ClearCollect(
        colFinal,
        AddColumns(
            colEmails2,
            User,
            " "
        )
    );
    //Patch User to the final collection using a LookUp
    ForAll(
        colFinal As Item,
        Patch(
            colFinal,
            Item,
            {
                User: LookUp(
                    colUsers2,
                    RowNumber = Item.RowNumber
                ).User
            }
        )
    )
    Here's my final collection (colFinal):
     
    My code is long but works. Hoping someone would be able to come up with a shorter version of this. 
     
    Hope this helps.
     
    Kind regards, 
    Nandit
     
    If this answers your query, please mark this response as the answer.
    If its helpful, please leave a like. Thanks!

     
     
     
  • Nandit Profile Picture
    1,568 Moderator on at
    Hi,

    Following up to check if you were able to solve this issue using my suggestion?

    Kind regards,
    Nandit

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

Forum hierarchy changes are complete!

In our never-ending quest to improve we are simplifying the forum hierarchy…

Ajay Kumar Gannamaneni – Community Spotlight

We are honored to recognize Ajay Kumar Gannamaneni as our Community Spotlight for December…

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 765 Most Valuable Professional

#2
Michael E. Gernaey Profile Picture

Michael E. Gernaey 343 Super User 2025 Season 2

#3
Power Platform 1919 Profile Picture

Power Platform 1919 272

Last 30 days Overall leaderboard