Hi there, I need 3 tokens to be linked to the other dashboard ( Field A, FieldB, FieldC). With your syntax above, we are getting FieldA only <drilldown>
<eval token="FieldA">mvindex(split($click.value$,"-"),0)</eval>
<link target="_blank">/app/app_name/nameoflinked_dashboard?token_name=$FieldA$</link>
<eval token="FieldB">mvindex(split($click.value$," "),1)</eval>
<link target="_blank">/app/app_name/nameoflinked_dashboard?token_name=$FieldB$</link>
<eval token="FieldC">mvindex(split($click.value$," "),2)</eval>
<link target="_blank">/app/app_name/nameoflinked_dashboard?token_name=$FieldC$</link>
</drilldown> I tried the above with FieldB and FIeldC tokens, but that doesn't work either. only FieldA is being linked.
... View more