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

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
globe11123
Helper I
Helper I

Monthly Turnover Average YTD

I'm trying to work out the monthly turnover for 22/23, we want the calculation to only take into account full months.

 

For example average for this month would be April+May / 2 then next month it would be April+May+June / 3 etc.

 

MonthlyAvg22-23 = (CALCULATE(SUM(INVOICE[NetTurnoverGBP]),('Calendar'[Fiscal Year])="22-23", filter 2)))
 
I've tried by using the above calculation but it becomes tricky when your trying to compare the month you are on against the fiscal month number. Any suggestions?
1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @globe11123 ,

 

You could create a column to check if the month is a full month.

For example:

isfullmonth = 
IF(ENDOFMONTH('Table'[date]) = DATE(YEAR('Table'[date]),MONTH('Table'[date])+1,1)-1,1,0)

 Then add this column as a filter condition to your formula.

 

Best Regards,

Jay

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @globe11123 ,

 

You could create a column to check if the month is a full month.

For example:

isfullmonth = 
IF(ENDOFMONTH('Table'[date]) = DATE(YEAR('Table'[date]),MONTH('Table'[date])+1,1)-1,1,0)

 Then add this column as a filter condition to your formula.

 

Best Regards,

Jay

amitchandak
Super User
Super User

@globe11123 , to get monthly avg of measure, You can try a measure like

 

AvergaeX(Values('Date'[Month Year]), [Measure])

 

Prefer to use date table, else use month year from your table

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!

December 2025 Power BI Update Carousel

Power BI Monthly Update - December 2025

Check out the December 2025 Power BI Holiday Recap!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.