Workflow not sending email

UHDJosh
✭✭
When I try to run this automation, if a person signs up for an event and their row ID is equal to or more than 41, they should have received an email. I tried forcing this and no emails have been received.
Tags:
Answers
-
That is because "041" is stored as a text value. That means there is no greater than or less than since it isn't a number. How exactly are you populating the [Row ID] column?
-
I set the column using the "# auto number", once the user fills out a form it inputs a number.
-
You will need to use a helper column (can be hidden after setting up) to convert that into a numerical data type.
=VALUE([Row ID]@row)
Then reference this helper column in your automation.