Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hello,
I have the following custom column
Occupancy % MTD = SUM('Rooms'[Occupancy %]) / 'Almyra Rooms'[StatisticDateDay]
I would like to SUM all rows that have the same month and same year only and not all the records. Then I would be able to devide it by the date of the month and I should get the MTD...
For example, this is what I have in mind...
Occupancy % MTD = SUM('Almyra Rooms'[Occupancy %] #WHERE MONTH NAME#) / 'Almyra Rooms'[StatisticDateDay]
Solved! Go to Solution.
Hi iioannou ,
Try this DAX formula:
Occupancy % MTD =
CALCULATE (
SUM ( 'Rooms'[Occupancy %] ),
FILTER (
Rooms,
YEAR ( Romms[date] ) = YEAR ( EARLIER ( Romms[date] ) )
&& MONTH ( Romms[date] ) = MONTH ( EARLIER ( Romms[date] ) )
)
)
/ 'Almyra Rooms'[StatisticDateDay]Regards,
Jimmy Tao
Hi iioannou ,
Try this DAX formula:
Occupancy % MTD =
CALCULATE (
SUM ( 'Rooms'[Occupancy %] ),
FILTER (
Rooms,
YEAR ( Romms[date] ) = YEAR ( EARLIER ( Romms[date] ) )
&& MONTH ( Romms[date] ) = MONTH ( EARLIER ( Romms[date] ) )
)
)
/ 'Almyra Rooms'[StatisticDateDay]Regards,
Jimmy Tao
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 84 | |
| 49 | |
| 37 | |
| 31 | |
| 30 |