Hi,
I have a long flow that updates item based on many conditions -
and if the condition is No it is another condition statement. I have 8 of these.
Anyway to simplify this?
Hi,
I have a long flow that updates item based on many conditions -
and if the condition is No it is another condition statement. I have 8 of these.
Anyway to simplify this?
Hi @wonka1234 ,
You could use expression to update the fields instead, for example:
if(
or(
and(equals(triggerOutputs()?['body/Column1'],'Yes'),equals(triggerOutputs()?['body/Column2'],'xxx')),
and(equals(triggerOutputs()?['body/Column1'],'Yes'),equals(triggerOutputs()?['body/Column3'],'xxx'))
),
'Value1',
'Value2'
)
Best Regards,
Bof
Michael E. Gernaey
566
Super User 2025 Season 1
David_MA
516
Super User 2025 Season 1
stampcoin
492