Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello All,
I am trying to achieve units * selling price as total amount seems its working fine for selling price 17.99 which is a text format but not working for 7.22 showing as $0, Not sure what to do used num(), num#() not working please help.
Sorce data format
Thanks,
D
Try wrapping a trim() around selling price. Sometimes that helps if there are some invisible whitespace in the source data.
Trim(SELLING_PRICE) AS [Selling Price]
Perhaps this?
Num(Num#(units * selling price))
Normally, Qlik calculates over dimension with aggregate, Perhaps this way
Num(Num#(Sum(units * selling price)))
Hello Anil, Thanks for reply,
But above solutions did not helps
Thanks,
D
Can you please share sample Qlik file which demonstrate quicker for you?
Try wrapping a trim() around selling price. Sometimes that helps if there are some invisible whitespace in the source data.
Trim(SELLING_PRICE) AS [Selling Price]
Thank you Vegar