Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin 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.
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
Solved! Go to Solution.
@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")
@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")
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
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.
User | Count |
---|---|
82 | |
42 | |
31 | |
27 | |
27 |