Last active
July 10, 2018 11:23
-
-
Save robhammond/9cd41c5de979c8b1c1a3a8ce04cd05e3 to your computer and use it in GitHub Desktop.
Custom Page Type Dimension - Data Studio
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CASE | |
WHEN (REGEXP_MATCH(Page/Screen Path (Clean),".*?/all-about/.*?")) THEN "Topic" | |
WHEN (REGEXP_MATCH(Page/Screen Path (Clean),".*?-[0-9]+$")) THEN "Article" | |
WHEN (REGEXP_MATCH(Page/Screen Path (Clean),"^https?://[^/]+/.*?/$")) THEN "Section" | |
WHEN (REGEXP_MATCH(Page/Screen Path (Clean),"^https?://[^/]+/$")) THEN "Home" | |
ELSE "(Other)" | |
END |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment