Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
How to get latest full month. If latest date is 16 march 2017 then period should show Feb 2017. i.e. latest full month
May be
Max(MonthEnd(Date),2)
or
MonthName(Max(MonthEnd(Date),2))
Regards,
Antonio
May be like this
Sum({<Date = {"$(='>=' & Date(If(Max(Date) = Floor(MonthEnd(Max(Date))), MonthStart(Max(Date)), MonthStart(Max(Date), -1)), 'DateFieldFormatHere') & '<=' & Date(If(Max(Date) = Floor(MonthEnd(Max(Date))), Floor(MonthEnd(Max(Date))), Floor(MonthEnd(Max(Date), -1))), 'DateFieldFormatHere'))"}>}Measure)
May be
Max(MonthEnd(Date),2)
or
MonthName(Max(MonthEnd(Date),2))
Regards,
Antonio
try
MonthName(MonthEnd(YOURDATEFIELD,-1))
Thank you.