Can this excel formula be created in smartsheet?
=IFS(A5>B5+C5,"RED",B5>A5+C5,"Green",C5>B5+A5,"Yellow")
If anyone can help me I<d be very appreciative :)
Best Answer
-
Hey there,
This should do it for you! Although instead of including the specific row number, I used "@row" so that you can conform it to a Column level formula if you'd like. Also, I called the columns, "ColumnA", "ColumnB" and "ColumnC"; not sure what your actual column names are but you'll need to update the formula to replace my placeholders.
=IF(SUM(ColumnA@row) > (ColumnB@row + ColumnC@row), "Red", IF(SUM(ColumnB@row) > (ColumnA@row + ColumnC@row), "Green", IF(SUM(ColumnC@row) > (ColumnB@row + ColumnA@row), "Yellow")))
Answers
-
Hey there,
This should do it for you! Although instead of including the specific row number, I used "@row" so that you can conform it to a Column level formula if you'd like. Also, I called the columns, "ColumnA", "ColumnB" and "ColumnC"; not sure what your actual column names are but you'll need to update the formula to replace my placeholders.
=IF(SUM(ColumnA@row) > (ColumnB@row + ColumnC@row), "Red", IF(SUM(ColumnB@row) > (ColumnA@row + ColumnC@row), "Green", IF(SUM(ColumnC@row) > (ColumnB@row + ColumnA@row), "Yellow")))
-
@Amanda Alv Can I have it Blue if all of those are false?
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.2K Get Help
- 419 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 142 Just for fun
- 58 Community Job Board
- 462 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 299 Events
- 38 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!