Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! 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
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 13 | |
| 5 | |
| 5 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 25 | |
| 10 | |
| 10 | |
| 6 | |
| 6 |