Using symbols for assigned to
is there a formula that automatically displays the person icon based off of the number of resources in the assigned to column vs using the drop down?
Best Answer
-
Hello @TPALJA
A possible solution is create a helper column that will count the # of contacts on your Assigned To column using the COUNTM function.
Sample formula on your helper column:
=COUNTM([Assigned To]@row)
Then on your Resource column, you'll create a series of IF statements:
=IF([Column8]@row = 0, "Empty", IF([Column8]@row = 1, "One", IF([Column8]@row = 2, "Two", IF([Column8]@row = 3, "Three", IF([Column8]@row = 4, "Four", IF([Column8]@row = 5, "Five"))))))
However, the max value for the resource symbol is up to 5 only if your Assigned To column is greater than 5 it will not be able to return a symbol just the numerical value.
Melissa Yamada
melissa@insightfulsheets.com
Data made simple, spreadsheets reimagined
Answers
-
Hello @TPALJA
A possible solution is create a helper column that will count the # of contacts on your Assigned To column using the COUNTM function.
Sample formula on your helper column:
=COUNTM([Assigned To]@row)
Then on your Resource column, you'll create a series of IF statements:
=IF([Column8]@row = 0, "Empty", IF([Column8]@row = 1, "One", IF([Column8]@row = 2, "Two", IF([Column8]@row = 3, "Three", IF([Column8]@row = 4, "Four", IF([Column8]@row = 5, "Five"))))))
However, the max value for the resource symbol is up to 5 only if your Assigned To column is greater than 5 it will not be able to return a symbol just the numerical value.
Melissa Yamada
melissa@insightfulsheets.com
Data made simple, spreadsheets reimagined -
@melissa@insightfulsheets.com thank you that worked perfectly
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.7K Get Help
- 433 Global Discussions
- 136 Industry Talk
- 468 Announcements
- 4.9K Ideas & Feature Requests
- 143 Brandfolder
- 147 Just for fun
- 64 Community Job Board
- 466 Show & Tell
- 32 Member Spotlight
- 2 SmartStories
- 298 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!