Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
sachin961
Contributor II
Contributor II

I want to exclude the Fields from set analysis

I have below set analysis code. I am trying to exclude filed by using below set analysis code but it is not working.

aggr(NODISTINCT sum({<FieldToExclude=>} sales), ...)

Please provide the solution how we can achieve.

Other side I have using normal syntax which is working.

sum({<FieldToExclude=>} sales)

 

Thanks & Regards,

Sachin Yadav

1 Solution

Accepted Solutions
BrunPierre
Partner - Master
Partner - Master

Sum({<FieldToExclude=>}  aggr(NODISTINCT sum({<FieldToExclude=>} sales), ...))

View solution in original post

2 Replies
BrunPierre
Partner - Master
Partner - Master

Sum({<FieldToExclude=>}  aggr(NODISTINCT sum({<FieldToExclude=>} sales), ...))

sachin961
Contributor II
Contributor II
Author

Thank you BrunPierre,

It is working perfectly.