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 / It is possible to use ...
Power Apps
Unanswered

It is possible to use the Substitute function to replace a part of a string in all the rows of a sharepoint list

(0) ShareShare
ReportReport
Posted on by Microsoft Employee

How are you, I would like to know if this is possible, what happens is that I have a field in which initially the data is taken from a combobox to text, concatenating what the user chooses with commas, the field is more or less as follows

Text1,Text2,Nancy,Andres,Pedro,Carlos,Juan,Lucia

and so several rows with different texts

I would like to know if it is possible with the function for all () to go through all the elements of the list and update this part of the string with a new name, for example, where there is only Andres in all the rows of the list, update it for Camilo

Is this possible plus the patch + substitute function for example to update only that part of the string ?

Categories:
I have the same question (0)
  • RandyHayes Profile Picture
    76,299 Super User 2024 Season 1 on at

    @Anonymous 

    Yes, but your statement implies using the ForAll incorrectly.  ForAll is a function that returns a table - it is not a for loop function.

     

    So, your ultimate formula would be similar to the following:

    Patch(yourDataSource,
     Filter(
     ForAll(yourDataSource,
     If("Andres" in yourColumnName,
     {ID: ID,
     yourColumnName: Substitute(yourColumnName, "Andres", "Camilo")
     }
     )
     ),
     !IsBlank(ID)
     )
    )
     

    In the above, the ForAll creates a table to pass to the filter (in order to remove blank records based on the If statement) which then returns the table of records to "fix" for patch.

     

    I hope this is helpful for you.

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

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Users!

Kudos to our 2025 Community Spotlight Honorees

Congratulations to our 2025 community superstars!

Congratulations to the March Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
11manish Profile Picture

11manish 536

#2
WarrenBelz Profile Picture

WarrenBelz 426 Most Valuable Professional

#3
Haque Profile Picture

Haque 305

Last 30 days Overall leaderboard