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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
LeppyR64
Regular Visitor

Count Weeks Above Target

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%.

 

Count of Weeks Above Capacity =

var tbl = filter(SUMMARIZECOLUMNS(DateDimension[Iso Year Week], "util", [Utilization Pct]), [util] > 1)

return COUNTROWS(tbl)


This gives me the error that Summarize Columns cannot be used in this context.

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@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)

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@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!

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

Power BI Carousel June 2024

Power BI Monthly Update - June 2024

Check out the June 2024 Power BI update to learn about new features.

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.