Automated Directional Arrow Symbols
I am trying to compared two columns in my sheet, based on if the numbers in the column grew, shrunk, or were unchanged. I'd like to automatically show this with the up/down/unchanged symbol. Is this possible?
I was able to get the up/down arrows to automatically show, but I'm not sure how to incorporate the "unchanged" symbol.
=IF([2021 Begin Count]@row > [2022 Begin Count]@row, "Down", "Up")
Answers
-
@mhenryWVP You're almost there. We can accomplish this by nesting some IFs:
=IF([2021 Begin Count]@row > [2022 Begin Count]@row, "Down", IF([2021 Begin Count]@row = [2022 Begin Count]@row, "Unchanged", "Up"))
In English: If 2021 Count is greater than 2022 Count, "Down"; If 2021 Count is the same as 2022 Count, "Unchanged"; otherwise, "Up".
From my test sheet:
Regards,
Jeff Reisman
Link: Smartsheet Functions Help Pages Link: Smartsheet Formula Error Messages
If my answer helped solve your issue, please mark it as accepted so that other users can find it later. Thanks!
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.6K Get Help
- 433 Global Discussions
- 136 Industry Talk
- 465 Announcements
- 4.9K Ideas & Feature Requests
- 143 Brandfolder
- 147 Just for fun
- 63 Community Job Board
- 466 Show & Tell
- 32 Member Spotlight
- 2 SmartStories
- 298 Events
- 36 Webinars
- 7.3K Forum Archives