Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

set anaalysis help please.

How can I write this in set analysis.

Sum(if(ActualAccount<>0,
if([Miscellenious Fee]<>0,FeeAmount)))

Thanks

3 Replies
sujeetsingh
Master III
Master III

Something like this :


sum({$<ActualAccount-={'0'},MiscelleniusFee-={'0'} >}FeeAmount)

MK_QSL
MVP
MVP

SUM({$<

     ActualAmount -= {0},

     [Miscellenious Fee] -= {0}

>}FeeAmount)

Not applicable
Author

hi

try this

sum({$<ActualAccount-={'0'},MiscelleniusFee-={'0'} >}  FeeAmount)

**********************************************************************************