Hi all,
I'm trying to build a flow which will generate an email based on the values from SP list.
The email is using HTML and there are a few bullet point which should be present in the email body or not present based on the value of the respective SP list column. If the value is Yes, show the bullet point text, if the value is not, just not show it at all.
My idea was to use something like this (example for SP list column called QA Module):
if(equals(@{triggerOutputs()?['body/field_36/Value']},'Yes','<li>Q&A</li>'))
but that doesn't work.
All four SP list column I'm getting the data from are Choice type columns with Yes and No values available.
Any idea how should the correct expression look like?