Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Want to retrieve only latest month data in straight table

Hello all,

I have 3 fields.

CLIENTS

MONTH

REVENUE

Not all clients have revenue in all months.

I'd like to show in a straight table, the REVENUE FOR THE LATEST MONTH.

suggestion?  I tried incorporating max(month) into set analysis but doesn't seem to be working.

Thanks in advance!

1 Solution

Accepted Solutions
swuehl
MVP
MVP

Have you used FirstSortedValue with a negated MONTH as sort weight as shown above?

View solution in original post

4 Replies
swuehl
MVP
MVP

You are using a straight table with dimension CLIENTS? Try using

=FirstSortedValue( REVENUE, -MONTH)

as expression, then.

Not applicable
Author

Very close, but this is pulling in the FIRST month's revenue.

Is there a way to pull in the LATEST month's revenue?

Thanks again!

swuehl
MVP
MVP

Have you used FirstSortedValue with a negated MONTH as sort weight as shown above?

Not applicable
Author

I just now saw that and plugged in the negative month.  This worked perfectly.  Thank you so much for your help!!!