Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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.
May be this
Count(If(Date = Floor(MonthEnd(Date)) or Max(TOTAL Date), Number))
May be this as your expression
Count(If(Date = Floor(MonthEnd(Date)), Number))
your dates in the fact table include the day or only month and year?
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 ?
how to show only max month should show max date numbers and all previuos months should show monthend date count
May be this
Count(If(Date = Floor(MonthEnd(Date)) or Max(TOTAL Date), Number))
thanks sunny its working can you explain how max(total Date) will work?
Max(TOTAL Date) will be evaluated as True for the Max Date and false for every other Date....