Forum Discussion
MarkShnier__You
Qrew Legend
5 years agonp, try this
var text MultiInTextFormat = ToText([[Field A]);
List(";",
IF(Contains($MultiInTextFormat, "Dog", "Poodle;Yorkie;Doberman"),
IF(Contains($MultiInTextFormat, "Cat", "Tabby;Siamese"),
IF(Contains($MultiInTextFormat, "Turtle", "Box"))
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.com
mark.shnier@gmail.com
------------------------------
var text MultiInTextFormat = ToText([[Field A]);
List(";",
IF(Contains($MultiInTextFormat, "Dog", "Poodle;Yorkie;Doberman"),
IF(Contains($MultiInTextFormat, "Cat", "Tabby;Siamese"),
IF(Contains($MultiInTextFormat, "Turtle", "Box"))
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.com
mark.shnier@gmail.com
------------------------------
- KarenHenke5 years agoQrew CadetThank you Mark!
When I try this formula, the first comma after "Dog" is highlighted with an error that says "Expecting )"
Would love your thoughts on how to fix that.
------------------------------
Karen Henke
------------------------------- MarkShnier__You5 years ago
Qrew Legend
Right, it was expecting more brackets
fix fix this part here to add three missing ), one on each line
List(";",
IF(Contains($MultiInTextFormat, "Dog"), "Poodle;Yorkie;Doberman"),
IF(Contains($MultiInTextFormat, "Cat"), "Tabby;Siamese"),
IF(Contains($MultiInTextFormat, "Turtle"), "Box"))
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.com
mark.shnier@gmail.com
------------------------------- KarenHenke5 years agoQrew Cadet
That worked perfectly!!!
I am literally in tears right now - this is such a relief!! I can't thank you enough!!
------------------------------
Karen Henke
------------------------------