Forum Discussion
JohannaEvans
7 years agoQrew Trainee
I have a list of multi text selections that have about 25 items.
When I summarize the fields, a table displays the selections by grouping:
Item 1 = 1
Item 1, 5 = 1
Item 1, 3 = 1
This is not what I am looking for, therefore, I thought I could write a formula that recognized the group rather than the grouping.
Item 1 = 3
Item 3 = 1
Item 5 = 1
QuickBaseCoachD
7 years agoQrew Captain
I realized that this is simpler than i thought
Try this
var text Selections = ToText([My Multi select field]);
var text SearchTerm = "PC 1.0 Readmission rate";
IF(Contains($Selections, $SearchTerm),1,0)
Then if that works OK, just copy the field 24 times and replace the formula variable for the SearchTerm.
Try this
var text Selections = ToText([My Multi select field]);
var text SearchTerm = "PC 1.0 Readmission rate";
IF(Contains($Selections, $SearchTerm),1,0)
Then if that works OK, just copy the field 24 times and replace the formula variable for the SearchTerm.