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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
rnguyen2
Contributor
Contributor

Aggregating total for reporting period excluding specific dimension.

Hi below is an example where I want to show percentage of the AR Balance Total for Posting Period. I can only get it to populate for one row of the posting period.

Anyone know how I need to adjust the expressions?

Thank you.2019-02-01_9-10-29.png

 

1 Solution

Accepted Solutions
sunny_talwar
MVP
MVP

Try this

Sum([AR BALANCE])/
Aggr(NODISTINCT Sum([AR BALANCE]), [posting_date.autoCalendar.YearMonth])

View solution in original post

3 Replies
sunny_talwar
MVP
MVP

Try this

Sum([AR BALANCE])/
Aggr(NODISTINCT Sum([AR BALANCE]), [posting_date.autoCalendar.YearMonth])
rnguyen2
Contributor
Contributor
Author

Thank you it worked!

ahmetozmen
Contributor II
Contributor II

Sum([AR BALANCE])/
Sum(total <[posting_date.autoCalendar.YearMonth]> [AR BALANCE])