Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
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

Try this

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

View solution in original post

3 Replies
sunny_talwar

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])