Adding a flag when im under?
I want on 1st Colum where says reorder flag, to automatically change to flag if last column "Count yard" is Under. Not sure if that's possible.
Thanks!
Best Answer
-
Put this formula into your flag column:
=IF([Count Status]@row="Under",1,0)
Jonathan Sanders, CSM
"Change is always scary because it is unknown, but facing the unknown is what makes us stronger."
Answers
-
Put this formula into your flag column:
=IF([Count Status]@row="Under",1,0)
Jonathan Sanders, CSM
"Change is always scary because it is unknown, but facing the unknown is what makes us stronger."
-
Thank you for the help! Will this same formula applied if i had a checkbox instead of flag?
-
Yes! 🙂
Flag, Star, or Checkbox all use 1 to say "selected" or 0 to say "un-selected" in formulas.
Join us for Jumpstart 2025 with Community on 23 January (in two time zones)! 🎉 Register here.
-
@Mdelacruz yes, what Genevieve said. In any cell that has an indicator like check, flag, or star. If it doesn't and its just a text/number cell, 1 will return True and 0 will return False in the cell.
Jonathan Sanders, CSM
"Change is always scary because it is unknown, but facing the unknown is what makes us stronger."
-
Now will it also be possible to automatically change the count status column to under if [visualcount] is less than [stock quantity] or change to over if its bigger? Currently i have a drop down list but i want to be able to plug the number and automatically switch for the user.
Thanks!
-
Yep, you can do this as well! You can use > or < to compare numbers in cells. Here's a Help Article that may be useful: Create and Edit Formulas in Smartsheet
In your case, try something like this:
=IF([visualcount]@row < [Stock Quantity]@row, "Under", IF([visualcount]@row = [Stock Quantity]@row, "Same", "Over"))
I added in one statement to say that if the same number to say "Same" but you can adjust this as needed.
Cheers,
Genevieve
Join us for Jumpstart 2025 with Community on 23 January (in two time zones)! 🎉 Register here.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.3K Get Help
- 445 Global Discussions
- 143 Industry Talk
- 476 Announcements
- 5K Ideas & Feature Requests
- 85 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 488 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 302 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!