Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
indiana256
Contributor
Contributor

Set analysis syntax

Hi,

i would like to know the difference to define a dimension with o without an '=' at the begining; for example:

 

=sum({< MesFiscal={'$(=Mes)'}, AñoFiscal = {'$(=vAñoFiscal)'},AñoMes=,}>} Saldo_Actual)

vs

sum({< MesFiscal={'$(=Mes)'}, AñoFiscal = {'$(=vAñoFiscal)'},AñoMes=,}>} Saldo_Actual)

 

Thanks!

2 Replies
Vegar
MVP
MVP

These expressions should return the same output. There is no difference between an expression with or without an preceding equal sign.

marcus_sommer

One addition - if you want to use the expression within a variable it would make a difference if there is an equal sign at the beginning or not. With it the expression would be (globally) evaluated and only the result would be assigned to the variable and without it the variable would contain the expression as string.

- Marcus