I am trying to group certain source/medium
dimensions in Google Data Studio and leave the original value for the rest; for example:
CASE
WHEN (source/medium = “lnkd.IN|linkedin.*”) THEN “Linkedin”
ELSE “”
END
Can the ELSE
be blank to keep the same original value?