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!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
I need measure for Deliveries table , wich counts rows for each combination 'New, Modified, Repeat' (Type, in matrix as row) and 'Roof, Wall, Floor, Stair' (Design, in matrix as column) in each cell, where data is, but ignore Days column context (in matrix as row). Table filtered by DeliveryDate column in related (many to one) table Surveys. In right table — what i have with COUNTROWS('Deliveries'), in left table — marked sample of expected result. Could you help me please?
Hi, @YKarpenko
Can you provide a simple PBIX file for testing? Sensitive information can be removed in advance.
Best Regards
@v-zhangti I'm resolved this issue by creating next table:
DeliveriesCount =
GROUPBY(
FILTER(
ALLSELECTED('Deliveries'),
Deliveries[Days] <> "Late"
),
'Deliveries'[Type],
'Deliveries'[Design],
'Deliveries'[CustomerOrderId],
'Deliveries'[Days],
"Count", COUNTX(
CURRENTGROUP(),
'Deliveries'[RelatedDesignId]
)
)
Thank guys for your advices
Table 1 being your deliveries table
table 2 being your Days dimension table
@Anonymous result as in previous case. I tried CALCULATE( COUNTROWS('Deliveries'), ALLSELECTED(Days[Days]) )
@amitchandak, thanks. I tried CALCULATE( COUNTROWS('Deliveries'), REMOVEFILTERS(Deliveries[Days]) ) (right table), but result the same as just with COUNTROWS('Deliveries') (left table). What I'm doing wrong?
Example of expected result
@YKarpenko , In your, measure add removefilters(Table[Days])
Assume you are using M1 measure in left
M2 = calculate([M1],removefilters(Table[Days]) )
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 52 | |
| 51 | |
| 35 | |
| 15 | |
| 14 |
| User | Count |
|---|---|
| 92 | |
| 75 | |
| 41 | |
| 26 | |
| 25 |