Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

COVERAGE calculation between current and previous year

Hi.

Need help to create calculation for coverage.

Customer need to check if item has been sold this year and last year and then we have coverage.

If the item has not been sold either this year and last year ther will not be coverage (see exampel below)

 

 

mikaelacksjo_0-1640777624935.png

 

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Anonymous , Assume you already have measure like first 2.

 

This Year = CALCULATE(SUM(Sales[Sales Amount]),DATESYTD('Date'[Date],"12/31"))
Last Year = CALCULATE(SUM(Sales[Sales Amount]),DATESYTD(dateadd('Date'[Date],-1,Year),"12/31"))

 

the other measures you need

coverage = if(not(isblank([This Year])) && not(isblank([Last Year])), 1, blank())

 

coverage total = sumx(addcolumns(summarize(Table, Table[Customer], Table[Item]), "_1", [coverage]), [_1])

 

Total = countrows(summarize(Table, Table[Customer], Table[Item]))

 

coverage % = divide([coverage total],[Total])

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Many thanks - works perfect and is quick

 

amitchandak
Super User
Super User

@Anonymous , Assume you already have measure like first 2.

 

This Year = CALCULATE(SUM(Sales[Sales Amount]),DATESYTD('Date'[Date],"12/31"))
Last Year = CALCULATE(SUM(Sales[Sales Amount]),DATESYTD(dateadd('Date'[Date],-1,Year),"12/31"))

 

the other measures you need

coverage = if(not(isblank([This Year])) && not(isblank([Last Year])), 1, blank())

 

coverage total = sumx(addcolumns(summarize(Table, Table[Customer], Table[Item]), "_1", [coverage]), [_1])

 

Total = countrows(summarize(Table, Table[Customer], Table[Item]))

 

coverage % = divide([coverage total],[Total])

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors