Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hiii To All,
I m creating one variable:
LET $LastPrice=Tax+[Unit Price];
M adding Tax and Unit Price but m getting string as it is in my straight table.its not evaluating the expression.
Thanx & Regards,
Qliker.
Create Variable as below
eLastPrice=SUM(Tax)+SUM([Unit Price])
now use
=$(eLastPrice)
I have tried like this bro but again m getting double value.
Hello,
LOAD * Inline
[
Tax,Unit Price
100,200
];
LET $LastPrice='Tax+[Unit Price]'
This is example script and in chart just do
=$($LastPrice)
Omno,
Without quotes how to use LET from scripting?
Abhishek,
Simple use your Dimension and create one variable like
LET Sample = 'Gross + Salary';
Then create chart with that dim and use this expression $(Sample)
-- Anil
M using without quotes nd its working.
Check your Variables (Ctrl + alt + v) then see, is that variable in created overthere. If yes, Cool ..