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.9K Get Help
- 441 Global Discussions
- 139 Industry Talk
- 471 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 496 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives