Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
I have the following tables:
- Calendar table (Date, ISO Year, ISO Week Number)
- Operation Data (Date, Production Area, Order Number, Labour to be Completed) - Measure (Sum of Labour to be Completed)
- Schedule Data (Date, Production Area, Labour Scheduled) - Measure (Sum of Labour Scheduled)
- Production Areas (Production Area) - Measure (Utilizaiton Pct = Sum of Labour to be Completed / Sum of Labour Scheduled)
Operation Data is filtered by Calendar and Production Areas
Schedule Data is filtered by Calendar and Production Areas
This model has two fact tables, Schedule Data, and Operation Data.
For each Production Area (say, "packaging"), for the time period selected (say "this year"), we want to see the Utilization Percentage, which works fine. The other measure that I can't get to work is to give the count of Weeks where the total utilization exceeds 100%.
This gives me the error that Summarize Columns cannot be used in this context.
Solved! Go to Solution.
@LeppyR64 , try like
Count of Weeks Above Capacity =
var tbl = filter(summarize(Fact, DateDimension[Iso Year Week], "util", [Utilization Pct]), [util] > 1)
return COUNTROWS(tbl)
@LeppyR64 , try like
Count of Weeks Above Capacity =
var tbl = filter(summarize(Fact, DateDimension[Iso Year Week], "util", [Utilization Pct]), [util] > 1)
return COUNTROWS(tbl)
That worked great. I thought I had tried that, but I must not have done it correctly. Thanks!
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 42 | |
| 38 | |
| 33 | |
| 21 | |
| 15 |
| User | Count |
|---|---|
| 64 | |
| 59 | |
| 31 | |
| 27 | |
| 25 |