Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
a_kosarev
Contributor II
Contributor II

Limit dates in a line chart

I'm trying to exclude the first month data from a line chart and use the expression below: 

=if(Utilization_Date > monthend(min(Utilization_Date)), [Utilization_Date.autoCalendar.YearMonth])

Could anyone tell me why it returns the 'invalid dimension' error? 

 

1 Reply
Anil_Babu_Samineni

Try below, since Aggregate functions are not allowed without aggregate

=if(Utilization_Date > monthend(Aggr(min(Utilization_Date), Utilization_Date)), [Utilization_Date.autoCalendar.YearMonth])

 

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful