Hello, I have been developing a Power App and using the patch function to add new records as well as update information within an existing record within a SharePoint List, but am now running into a scenario where I would like to keep the existing text and add to it as opposed to replacing it.
If I use the below table for example:
| Name | Age | Location |
| Ryan | 38 | Florida |
| Alex | 50 | Leon |
Lets say I want to add the Country to each location. I want to use the patch function to add USA and Mexico along with a delimiter respectively. so that my new entry would be:
| Name | Age | Location |
| Ryan | 38 | Florida, Unite States |
| Alex | 50 | Leon, Mexico |