Count Multi-Select

Count Multi-Select

From
Reddit
Status
Updating
Share
Entries

Support Count

if(empty(prop("Supports")), 0, length(replaceAll(prop("Supports"), "[^,]", "")) + 1)
Explanation
if(empty(prop("Supports")), 0,
If Supports is empty, display 0.
length(replaceAll(prop("Supports"), "[^,]", "")) + 1)
Otherwise return just the commas from the comma-separated output, then count those commas and add 1 (to compensate for the last entry not having a comma after it).
 
By Ben  •  Latest  •  Was this helpful? Please consider buying me a coffee. Cheers!By Ben  •  Latest  •  Was this helpful? Please consider buying me a coffee. Cheers!
By BenLatest • Was this helpful? Please consider buying me a coffee. Cheers!