How do I create a Flow to get dynamic text into the body?
I have now this flow.
The intention is that if ruleset 1 is true that certain text enters in the body, but if ruleset 2 is true, another text enters in the body.
It may also be that text from ruleset 1 AND ruleset 2 are true.
Is that possible?
Hi @efialttes
Can you help me with this?
When i put this rule in the expression
Perhaps the "Add dynamic content" editor is a bit buggy sometimes, but in order to add inside the expression your column 'Number' you just need to add :
item()?['Number']
we use item()? since we are inside an Apply_to_each loop.
Hope this helps
You can add the following expressions on "Send an email" body:
if(equals(item()?['Ruleset_1'],'1'),'This text is added when ruleset_1 equals to 1','')
if(equals(item()?['Ruleset_2'],'1'),'This text is added when ruleset_2 equals to 1','')
Hope this helps