Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I have Inline Table As:
Table:
LOAD * INLINE [
Participación,Resultado ,Expresion2
Sin Participación , Resultado CLP Sin Ajustes , '=(sum({<Año_Contable={'$(vAñoAnterior)'} '>} CrAmt) '
];
in Text its gives me a Output.. I need how to write same thing in inline table and use as Variable..
Thank!!
Hi Guillermo, when QV finds '$(' it tries to evaluate what's inside, to avoid this you can use another character instead of $ and replace it:
Table:
LOAD Participación,Resultado ,Replace(Expresion2, '#', '$') as Expresion2 INLINE [
Participación,Resultado ,Expresion2
Sin Participación , Resultado CLP Sin Ajustes , =(sum({<Año_Contable={'#(vAñoAnterior)'}>} CrAmt)
];