Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi, I am loading a table from Excel and I want to round a column of numbers. The excel version works just fine, but how do I write it in the Load statement. Here is the excel version:
=IF((Amount-TRUNC(Amount))>=0.7,ROUNDUP(Amount,0),ROUNDDOWN(Amount,0))
So 28.7 would be 29 and 28.6 would be 28.
So what I have now is not working for me:
Load
Color,
Buckets,
if((Amount-TRUNCATE(Amount,0)>=Roundup(Amount,0),Rounddown(Amount,0)) as Amount
From..........;
I can't find the appropriate syntax for this. If anyone could point me in the right direction. Thanks!
Translated into qlik syntax:
LOAD
IF(Frac(Amount)>=0.7,ceil(Amount),floor(Amount)) as Amount
From ....
Translated into qlik syntax:
LOAD
IF(Frac(Amount)>=0.7,ceil(Amount),floor(Amount)) as Amount
From ....