Hoping someone can help me understand how to adjust formatting of some values going in or coming out of a JSON object.
Canvas Power App
- added a Download button so the user can download a CSV file of data from a Gallery.
- The process creates a collection from the gallery data,
- JSONFile variable contains the data from JSON function.
- A Power Automate flow then runs to convert the JSON object to a CSV table, file created and saved to the users OneDrive.
Download button OnSelect property is:

Power Automate flow to create the file is:


Problem: some of values in the JSON object are ugly when put into the CSV table.
Eg.
ResponseDetails column data contains all the html tags making it difficult for the user to read it.
| <div class="ExternalClassblahblahblah"><p>This Request will require full regression testing from end to end at warehouse</p></div> |
LeadAssigned column data contains array symbols, making it difficult for the user to read.
| [{"DisplayName":"Smith, John"}, {"DisplayName":"Jones, Robert"}] |
I'm sure there's a way to reformat this info so it's readable to the user. I don't how or where to do it in the process. Any help would be greatly appreciated. Thank you.