Forum Discussion
MCFNeil
9 years agoQrew Captain
Correct (At least going this route), If you have a ton of options there are a few other ways, but multi select fields are tricky.
Here is a more complete formula for your example
Here is a more complete formula for your example
List(", ",
If(Contains([Name], "Jack"),
"<div style=\"font-size: 12pt; color:white;background-color:blue; width:100%; text-align:center; \">Jack</div>", ""),
If(Contains([Name], "Carol"),
"<div style=\"font-size: 12pt; color:white;background-color:red; width:100%; text-align:center; \">Carol</div>", ""),
If(Contains([Name], "Barbara"),
"<div style=\"font-size: 12pt; color:white;background-color:purple; width:100%; text-align:center; \">Carol</div>", ""),
If(Contains([Name], "Janet"),
"<div style=\"font-size: 12pt; color:white;background-color:yellow; width:100%; text-align:center; \">Carol</div>", "")
)
- AndreonnaGarret9 years agoQrew Assistant CaptainI am finding that multi select fields are a pain. This seems to be the only option in terms of assigning multiple people to one record though.