Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
bsbernabe
Creator
Creator

Only total in straight table in Column

Hi There,

There's any possible way that i can view only the total of Straight table in a simple way?

this is what i have:

this is what output that i need.

Regards Bing

14 Replies
ahaahaaha
Partner - Master
Partner - Master

Which fields should be in dimensions and expressions of the table?

Regards,

Andrey

sunny_talwar

Is this what you want?

Capture.PNG

Used this expression:

=If(Dimensionality() = 0, Sum(WRKSum), ' ')

bsbernabe
Creator
Creator
Author

Hello Sunny Thank you for your support, base on your expression what i need is the Total of Rows i do something but i know its not proper or correct cause I'm using Distinct to get the Total Row can you correct me

=Sum( aggr( sUM(Distinct If(DIVISIONCODE= 'HO', NetWorkDays(SUSDATEFR1,SUSDATETO1))),BADGENO,PENALTY) ) +

    Sum( aggr( sUM(Distinct If(DIVISIONCODE= 'HO', NetWorkDays(SUSDATEFR2,SUSDATETO2))),BADGENO,PENALTY) )

Note Try to Use sample

0369 i got the correct Total but here at

0811 i got wrong Total

Best Regards,

Bing

sunny_talwar

Try this:

=Sum(Aggr(Sum(Distinct {<DIVISIONCODE = {'HO'}>} RangeSum(NetWorkDays(SUSDATEFR1,SUSDATETO1), NetWorkDays(SUSDATEFR2,SUSDATETO2))), BADGENO,SUSDATEFR1, SUSDATEFR2, SUSDATETO1, SUSDATETO2))

bsbernabe
Creator
Creator
Author

Yes. Thank you Sunny I got it you such a great..