Convert a null value into a Text String using Custom Dimension

How can I create a custom dimension that will convert a dimension that is null into a specific text string? For example, if a dimension named "Location" is displaying a null value, I want to replace it with a text String named "Home".

0 1 239
1 REPLY 1

Check the 'If' condition option in your custom dimension.

It requires these parameters > if(yesno_expression, value_if_yes, value_if_no)

sample > if(${Location} = null, "Home", "Another value")

 

Top Labels in this Space