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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Problem facing when using Above(), Multi Dimension

2017-01-20 18_40_34-Qlik Sense Desktop.jpg

As you can see from the picture, the line for "Large Corp" disappeared because of the usage of Above function.

I want to specific the calculation using above function refer to dimension "Quarter" and then split by Dimension "Size".

Is there any solution for this?

This is the formula of measure : (sum(Outstanding)-Above(Sum(Outstanding)))/Above(Sum(Outstanding))

1 Solution

Accepted Solutions
sunny_talwar

Try this:

Aggr((Sum(Outstanding) - Above(Sum(Outstanding)))/Above(Sum(Outstanding)), Size, Quarter)

View solution in original post

3 Replies
sunny_talwar

Try this:

Aggr((Sum(Outstanding) - Above(Sum(Outstanding)))/Above(Sum(Outstanding)), Size, Quarter)

sunny_talwar

Or this:

Aggr((Sum(Outstanding) - Above(Sum(Outstanding)))/Above(Sum(Outstanding)), Size, (Quarter, (TEXT, ASCENDING)))

Not applicable
Author

Thanks a lot. I gt it right.