Forum Discussion
Revilo
3 years agoRegular Visitor
Column with data separated with semicolon
Hi, Just want to ask, I have a column in one of my table with format shown below. Is this an array? I am interested in counting rows with blank specific string within that array. Ex. I am i...
tamerj1
Community Champion
3 years agoHi Revilo
I hope it is as simple as it is described by the given example. Please let me know if it is not. For now please try
=
COUNTROWS (
FILTER ( 'Table', NOT CONTAINSSTRING ( 'Table'[Equipment], "followups" ) )
)- Revilo3 years agoRegular Visitor
= COUNTROWS ( FILTER ( 'Table', NOT CONTAINSSTRING ( 'Table'[Equipment], "followups","appliances", "clothing" ) ) )can i add more strings in that parameter like the shown above? thanks