Multiple variables to create dimension value

Hi! Is it possible to add multiple (datalayer) variables to create a dimension value? Using my setup (see image) in the Tag manager does not seem to get any results in the Custom dimensions
report
image

Hi @flasheart,

You can achieve that using either custom code looking like this:

_paq.push(["setCustomDimensionValue", 2, "{{ VA - Experiment }} - {{ VA - Variation }}"]);

or, (in Dimension value) starting with any character or string and not a variable e.g.:
E: {{ VA - Experiment }}; V: {{ VA - Variation }}
(any form of starting with a string or character should work, just make sure you are not starting with a variable or space)

Best,
Oliwer

Solved using the dimension value, thanks!