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
- Smartsheet Customer Resources
- 63.5K Get Help
- 402 Global Discussions
- 213 Industry Talk
- 450 Announcements
- 4.7K Ideas & Feature Requests
- 141 Brandfolder
- 135 Just for fun
- 56 Community Job Board
- 454 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 296 Events
- 36 Webinars
- 7.3K Forum Archives