Ordering columns in a report group
I have a report which is grouped by a a Repair Status column in descending order. I'd rather be able to order the grouping customized which is not an option. One idea is to create a formula column to order the 3 options how I would like, which I think would require multiple IF statements. I want to be able to say
If the repair status column = In progress, then the cell in another column =1, If the repair status column = standy by, then the cell in another column =2, If the repair status column = closed, then the cell in another column =3. And then I can order the columns based on that helper formula column. Any ideas on formula? Thanks!
Best Answer
-
This would be a pretty standard "nested IF" statement.
=IF([Repair Status]@row = "In Progress", 1, IF([Repair Status]@row = "Stand By", 2, 3))
Answers
-
This would be a pretty standard "nested IF" statement.
=IF([Repair Status]@row = "In Progress", 1, IF([Repair Status]@row = "Stand By", 2, 3))
-
thanks @Paul Newcome
-
Happy to help. 👍️
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.5K Get Help
- 430 Global Discussions
- 136 Industry Talk
- 465 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 146 Just for fun
- 63 Community Job Board
- 466 Show & Tell
- 32 Member Spotlight
- 2 SmartStories
- 301 Events
- 39 Webinars
- 7.3K Forum Archives