Hi everyone,
I am constructing a flow to output SharePoint column changes into an Email using Reza Dorrani’s tutorial: https://www.youtube.com/watch?v=Ek4oYWPWfT0
However I am experiencing issues with multi-choice columns.
For changed values, I am receiving text in the below format:

To remove the square brackets and quotation marks. I first use a Select action, and select the multi-choice field from dynamic content, and then in the Map property I enter the following expression:
item()?['Value']

Then I enter the following expression to be used in the email body:
join(body('Select_|_reformat_value_proposition'),';')

This successfully strips out of the irrelevant characters.

However, I am not clear how to apply the same logic to the old/previous values.

Does anyone have any ideas on how to approach this? I am thinking I need to apply some sort of formatting step after the HTTP GET request?
