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.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