Building a workflow to trigger on a comparison of two columns
I am building a workflow where I want to trigger an alert when the value in one column is less then the value in another column. How do I do that?
Best Answer
-
Hi Chuck,
You could add a helper column that contains trigger.
Add a "Checkbox" type column. Then insert your formula into the cell. The following formula assumes the cell you are using is in the 1st row, Checkbox column.
=IF([Column1]1<[Column2]1, "1", "0")
This formula would check the box if the Column1 value is less than the Column2 value.
To make the formula more efficient for the full sheet, use the following formula in the helper column.
=IF([Column1]@row<[Column2]@row, "1", "0")
Then you can setup your workflow automation off the checkbox column.
Hope this helps,
Connor
Connor Hartford
Answers
-
Hi Chuck,
You could add a helper column that contains trigger.
Add a "Checkbox" type column. Then insert your formula into the cell. The following formula assumes the cell you are using is in the 1st row, Checkbox column.
=IF([Column1]1<[Column2]1, "1", "0")
This formula would check the box if the Column1 value is less than the Column2 value.
To make the formula more efficient for the full sheet, use the following formula in the helper column.
=IF([Column1]@row<[Column2]@row, "1", "0")
Then you can setup your workflow automation off the checkbox column.
Hope this helps,
Connor
Connor Hartford
-
Connor - thanks for this solution - it works like a champ!
Chuck
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.5K Get Help
- 424 Global Discussions
- 136 Industry Talk
- 465 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 145 Just for fun
- 62 Community Job Board
- 465 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 301 Events
- 39 Webinars
- 7.3K Forum Archives