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: 
soniasweety
Master
Master

last day

Hi all,

i want to display the chart only monthend values only

currently am getting total month numbers

used  dimension:  =aggr(if([Month Year Num]>'$(vSelectedMonth)',[Month Year]),[Month Year])

Exp:  Count(Number)   so it is giving me last 10 months data in bar chart

so now I want  only each monthend date how many numbers are there that only need to show?

how to use monthend in  my measure.

Labels (1)
1 Solution

Accepted Solutions
sunny_talwar
MVP
MVP

May be this

Count(If(Date = Floor(MonthEnd(Date)) or Max(TOTAL Date), Number))

View solution in original post

7 Replies
sunny_talwar
MVP
MVP

May be this as your expression

Count(If(Date = Floor(MonthEnd(Date)), Number))

ali_hijazi
Partner - Master II
Partner - Master II

your dates in the fact table include the day or only month and year?

I can walk on water when it freezes
soniasweety
Master
Master
Author

thanks sunny  its working but

there is one logic in between

I want to get till last month it needs to show  and but current month  should show max date count  ?

soniasweety
Master
Master
Author

how to show only max month should show max date numbers and   all previuos months should show  monthend date count

sunny_talwar
MVP
MVP

May be this

Count(If(Date = Floor(MonthEnd(Date)) or Max(TOTAL Date), Number))

soniasweety
Master
Master
Author

thanks sunny its working   can you explain how max(total Date) will work?

sunny_talwar
MVP
MVP

Max(TOTAL Date) will be evaluated as True for the Max Date and false for every other Date....