Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Sub total is not working.

Sub total is not working.

3 Replies
qv_jagan
Partner - Creator
Partner - Creator

Hi Pragnya,

Please use this.

Sum(iF(INPUTAMT=0,AMT,INPUTAMT))

Thanks,

Jagan. V

jagan
Partner - Champion III
Partner - Champion III

Hi,

Try like this in script

LOAD *

     iF(INPUTAMT=0,AMT,INPUTAMT) AS NewField

FROM

(biff, embedded labels, table is Sheet1$);

Now in front end you simply use Sum(NewField).

Hope this helps you.

Regards,

Jagan.

ecolomer
Master II
Master II

Here you have my proposal