Formula to update a value automatically
I have 5 rows. The value for each can be low, medium, or high.
If the majority of the rows is one of the values then I want row 6 to return that value. But if any of the rows are high Row 6 value should be high.
Example:
Row1--Medium, Row2--High, Row3--Medium, Row4--Low, Row5--Low., Since Row2 is High Row 6 value is High
If Row2 value was Medium, then Row6 value would be Medium.
any idea on a formula to do this automatically?
Best Answers
-
Try this...
=IF(CONTAINS("High", [Column Name]1:[Column Name]5), "High", IF(COUNTIFS([Column Name]1:[Column Name]5, "Low") > COUNTIFS([Column Name]1:[Column Name]5, "Medium"), "Low", "Medium"))
-
THANK YOU!!!....been racking my head on that one. works perfect
Answers
-
Try this...
=IF(CONTAINS("High", [Column Name]1:[Column Name]5), "High", IF(COUNTIFS([Column Name]1:[Column Name]5, "Low") > COUNTIFS([Column Name]1:[Column Name]5, "Medium"), "Low", "Medium"))
-
THANK YOU!!!....been racking my head on that one. works perfect
-
Happy to help. 👍️
Help Article Resources
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
Check out the Formula Handbook template!