Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
Check it out now!Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
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.
Solved! Go to Solution.
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
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
@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