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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi All,
I have a measure:
Solved! Go to Solution.
Hi @HFoy,
I'd need to see the relationships in your model and the structure of your tables to come up with an accurate answer. You should show that. Assuming the most typical structure, you could create a measure like this:
Measure =
AVERAGEX (
ADDCOLUMNS (
FILTER (
ALL ( 'Calendar'[Date] ),
YEAR ( 'Calendar'[Date] ) = YEAR ( SELECTEDVALUE ( Table1[Date] ) )
&& MONTH ( 'Calendar'[Date] ) = MONTH ( SELECTEDVALUE ( Table1[Date] ) )
),
"_Day", [fc_Delivery_Rate]
),
[_Day]
)
Please always show your sample data in text-tabular format in addition to (or instead of) screen captures. That allows people trying to help to readily copy the data and run a quick test, plus it increases the likelihood of your question being answered. Just use 'Copy table' in Power BI and paste it here. Or, ideally, share the pbix (beware of confidential data).
Hi @HFoy ,
Have you solved your problem?
If you have solved, please always accept the replies making sense as solution to your question so that people who may have the same question can get the solution directly.
If you still need help, please share your data sample which could reproduce your scenario and your desired output so that we could help further on it.
Best Regards,
Cherry
Hi @HFoy,
I'd need to see the relationships in your model and the structure of your tables to come up with an accurate answer. You should show that. Assuming the most typical structure, you could create a measure like this:
Measure =
AVERAGEX (
ADDCOLUMNS (
FILTER (
ALL ( 'Calendar'[Date] ),
YEAR ( 'Calendar'[Date] ) = YEAR ( SELECTEDVALUE ( Table1[Date] ) )
&& MONTH ( 'Calendar'[Date] ) = MONTH ( SELECTEDVALUE ( Table1[Date] ) )
),
"_Day", [fc_Delivery_Rate]
),
[_Day]
)
Please always show your sample data in text-tabular format in addition to (or instead of) screen captures. That allows people trying to help to readily copy the data and run a quick test, plus it increases the likelihood of your question being answered. Just use 'Copy table' in Power BI and paste it here. Or, ideally, share the pbix (beware of confidential data).
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!