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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
CraigBlackman
Helper III
Helper III

Calculate quantity built based on 2 x 12 hour shift pattern

Hi,

 

I have a table that provides me with a quantity build and the date/time that item was built. We are moving to a 2 x 12 hour shift pattern runny 7am to 7pm and then 7pm to 7am.

 

I want to break down the quantity built into these shifts so we can see productiuvity. How would I go about doing so?

 

Thanks

 

Craig

1 ACCEPTED SOLUTION
ankitpatira
Community Champion
Community Champion

@CraigBlackman Use below DAX to create calculated column to group into shiftA and shiftB and then filter.

 

Column = IF(AND(HOUR('tableName'[datetimeColumn]) >= 7,HOUR('tableName'[datetimeColumn]) <= 19), "shiftA", "shiftB")

View solution in original post

3 REPLIES 3
ankitpatira
Community Champion
Community Champion

@CraigBlackman Use below DAX to create calculated column to group into shiftA and shiftB and then filter.

 

Column = IF(AND(HOUR('tableName'[datetimeColumn]) >= 7,HOUR('tableName'[datetimeColumn]) <= 19), "shiftA", "shiftB")

@ankitpatira, works a charm, was over looking a simple solution.

PavelR
Solution Specialist
Solution Specialist

Hi @CraigBlackman. I would just derive custom column from this datetime column and mark rows which have datetime 7am to 7pm as "ShiftA" and the rest as "ShiftB". Then you can filter by this column, or create measure where you have filter on just ShiftA´s data.

 

Regards.

Pavel

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.