How can I display the name of a parameter created in GA4

Hello everyone,
I have created custom parameters in GA4 to display in looker, but when I add them to a table it gives me a value and not a name. How can I do it?

Solved Solved
0 1 163
1 ACCEPTED SOLUTION

The name will be at the header. If you need the name elsewhere you need to map it:

CASE
WHEN CustomParameter = "1" THEN "Name A"
WHEN CustomParameter = "2" THEN "Name B"
ELSE "Unknown"
END



View solution in original post

1 REPLY 1

The name will be at the header. If you need the name elsewhere you need to map it:

CASE
WHEN CustomParameter = "1" THEN "Name A"
WHEN CustomParameter = "2" THEN "Name B"
ELSE "Unknown"
END