Forum Discussion
- JohnnyDeVilla1Qrew Traineemy solution was to pull from another field that has this formula and works well
List(", ",
IF(Contains(ToText([Field2]), "Hedge Hogs"), "Hedge Hogs"),
IF(Contains(ToText([Field2]), "Pink Ribbons"), "Pink Ribbons"),
IF(Contains(ToText([Field2]), "None"), ""))
------------------------------
Johnny DeVilla
------------------------------- MarkShnier__You
Qrew Legend
I would have done this
List(" - ",
IF([Field1]<>"none",[Field 1]),
IF([Field2]<>"none",[Field 2]),
IF([Field3]<>"none",[Field 3]),
IF([Field4]<>"none",[Field 4]),
IF([Field5]<>"none",[Field 5]))
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.com
mark.shnier@gmail.com
------------------------------- JohnnyDeVilla1Qrew TraineeThanks that works well!!
------------------------------
Johnny DeVilla
------------------------------