Hey,
I have a column in a SP list that is a "Generate Receipt" category column. The 3 categories are "1 year membership ($50), 2 year membership ($50), and no (default)".
I am using the trigger "when an item is modified", with this trigger condition:
@not(equals(triggerBody()?['Generate_x0020_Receipt']?['Value'], 'No'))
Probably obvious, but when that column is modified from "No" to one of the other two options, I want it to trigger the flow. However when I use this expression it seems to trigger all of the list items that aren't set at No....which I guess is now obvious looking at it (hah).
Can someone help me create an expression that will work for this situation?
Thank you!!
-T