I am trying to trigger an action based on whether todays's day of month equals the value in a spreadsheet cell. The expression always evaluates false, but when I use the values in the FALSE evaluation path, the values are equal. Do you see the problem?
It looks something like this:
If these values are equal, I want to trigger the TRUE path, but it always evaluates to FALSE. But when I email these two values in the false evaulation path, they are equal, indicating that it should have evaluated to TRUE?
You can see the results here:
Solved! Go to Solution.
Hi @ruffinc,
The condition doesn’t match because the value returned from the dynamic content DOM is not in the type of Integer.
Please use int function to convert MOD into integer.
I have made the following flow for your reference.
The function used in the Condition is:
int(items('Apply_to_each')?['DOM']) is equal to variables(‘test’)
Then the flow would go to the Yes branch if the condition meets.
Best regards,
Mabel
Hi @ruffinc,
The condition doesn’t match because the value returned from the dynamic content DOM is not in the type of Integer.
Please use int function to convert MOD into integer.
I have made the following flow for your reference.
The function used in the Condition is:
int(items('Apply_to_each')?['DOM']) is equal to variables(‘test’)
Then the flow would go to the Yes branch if the condition meets.
Best regards,
Mabel
This worked well. Thank you for the assistance!
User | Count |
---|---|
102 | |
39 | |
29 | |
24 | |
16 |
User | Count |
---|---|
132 | |
52 | |
51 | |
37 | |
26 |