How can I specify a range in one column and return a value in another column?
Best Answer
-
You need another IF statement in there, and I'm assuming if the value IS 10 you want it to be green as well...?
Try this:
=IF([Estimated Days to Completion]@row < 10, "Red", IF([Estimated Days to Completion]@row >= 10, "Green", ""))
What if the cell is blank? Do you need to address that as well? Using the above, it will give you a red dot. If you want it to be blank (no dot) then use this:
=IF(ISBLANK([Estimated Days to Completion]@row), "", IF([Estimated Days to Completion]@row < 10, "Red", IF([Estimated Days to Completion]@row >= 10, "Green", "")))
Answers
-
Hi Michael,
Use this in your other column:
=IF([Estimated Days to Completion]@row < 10, "Red", [Estimated Days to Completion]@row > 10, "Green")
but do make sure that this column is of "Symbol" type and select the correct option having Red, Yellow, Green.
Hope it helps!
Thanks,
Jayesh
-
You need another IF statement in there, and I'm assuming if the value IS 10 you want it to be green as well...?
Try this:
=IF([Estimated Days to Completion]@row < 10, "Red", IF([Estimated Days to Completion]@row >= 10, "Green", ""))
What if the cell is blank? Do you need to address that as well? Using the above, it will give you a red dot. If you want it to be blank (no dot) then use this:
=IF(ISBLANK([Estimated Days to Completion]@row), "", IF([Estimated Days to Completion]@row < 10, "Red", IF([Estimated Days to Completion]@row >= 10, "Green", "")))
-
Cool! Thanks. It worked. What if I wanted to throw an AND statement in there somewhere?
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.8K Get Help
- 434 Global Discussions
- 138 Industry Talk
- 470 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 65 Community Job Board
- 486 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives