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

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
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

Labels (1)
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)

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