Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
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)

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