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
I need to count the months that contain values to calculate the average spending.
The attached photo shows the months that contain values.
The target is to get the average spending like this (114,225 / 7 = 16,318).
Please help me to solve this issue>
Thank you in advance.
Solved! Go to Solution.
Hi @aamulhim
Try these:
with a separate dates table
=
CALCULATE (
DISTINCTCOUNT ( dates[month] ),
FILTER ( 'table', NOT ( ISBLANK ( 'table'[value] ) ) )
)
no dates table
=
CALCULATE (
DISTINCTCOUNT ( 'dates'[month] ),
FILTER ( 'table', NOT ( ISBLANK ( 'table'[value] ) ) )
)
if none works, please share a sample data (not an image) and your expected result.
Hi @aamulhim
Try these:
with a separate dates table
=
CALCULATE (
DISTINCTCOUNT ( dates[month] ),
FILTER ( 'table', NOT ( ISBLANK ( 'table'[value] ) ) )
)
no dates table
=
CALCULATE (
DISTINCTCOUNT ( 'dates'[month] ),
FILTER ( 'table', NOT ( ISBLANK ( 'table'[value] ) ) )
)
if none works, please share a sample data (not an image) and your expected result.
Thank you so much Dane. It works.
Best regards,
Hi,
It will depend up on the ganularity of your data. Share the download link of the PBI file.
Hi
Thank you for your reply. I have attached a screenshot from the data view, I hope that will help.
Hi,
An image does not help. Please share the download link of the PBI file.
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.