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
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)
Solved! Go to Solution.
@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])
Many thanks - works perfect and is quick
@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])
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 39 | |
| 38 | |
| 38 | |
| 28 | |
| 27 |
| User | Count |
|---|---|
| 124 | |
| 88 | |
| 73 | |
| 66 | |
| 65 |