Forum Discussion
DaliborBoldis
6 years agoFrequent Visitor
Google Analytics count rows that contain specific char
Hello there! I need help understanding how to properly count all rows in a table that contains the specific character. A little bit more details - we're using Google Analytics to get data fro...
Anonymous
6 years agoNot applicable
Hi DaliborBoldis .
Try this measure
TotalPages =
COUNTROWS (
FILTER (
'TPH'[Page],
CONTAINSSTRING (
'TPH'[Page],
"-"
)
)
)
Regards,
Harsh Nathani
Did I answer your question? Mark my post as a solution! Appreciate with a Kudos!! (Click the Thumbs Up Button)