Hi everyone
I have spent a painful amount of time on this.
My flow is grab a single record from a Sharepoint list then turn it into a pdf and then email it. All of that works except I need the choice column values to be converted to Yes/ No values. In other words, if for example the 'Wrapped Acceptably' Choice has been selected in Sharepoint then that would be a 'Yes' in my html, if all four choices values have been selected in Sharepoint then I would have four x 'Yes', if not then 'No'.
I have the choice columns as an array, and I have tried amongst many other things the following.
if(contains(body('Select')[0],'Wrapped Acceptably'),'Yes','No')
But this does not like null values
Any help would be appreciated.