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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Rockz
Helper I
Helper I

How to Measure User-Defined `X` Days Considering Working Hours in Issue Tracking Tool

Dear Champions,

 

I am developing an issue tracking tool where users can define a target value `X` (in days) to measure issue processing times. The challenge is to measure this while considering only working hours (Monday to Friday, 08:00 to 16:30).

**Requirement:**

1. Users input `X` days.
2. Calculate processing times considering only working hours.
3. Determine if processing times meet the `X` days target.

Could anyone provide guidance or examples on how to accurately measure `X` days in terms of working hours?

Thank you for your assistance!

This version is concise and directly addresses the need to calculate `X` days based on user input while considering working hours.

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Rockz ,

Here some steps that I want to share, you can check them if they suitable for your requirement.
Here is my test data:

vheqmsft_0-1720753119642.png

Create measures

Duration = 
VAR StartTime = 
IF(
    SELECTEDVALUE('Table'[Start Time]) <= TIME(8,0,0),
    TIME(8,0,0),
    SELECTEDVALUE('Table'[Start Time])
)
VAR EndTime = 
IF(
    SELECTEDVALUE('Table'[End Time] ) >= TIME(16,30,0),
    TIME(16,30,0),
    SELECTEDVALUE('Table'[End Time])
)
RETURN
IF(
    WEEKDAY(SELECTEDVALUE('Table'[Date])+ 1) <= 5,
    HOUR(EndTime - StartTime) + MINUTE(EndTime - StartTime)/60,
    0
)
Total Days = 
VAR _t = 
SUMMARIZE(
    'Table',
    'Table'[Date],
    'Table'[Start Time],
    'Table'[End Time],
    "Duration",[Duration]
)
RETURN
SUMX(_t,[Duration])/24

Create a numeric parameter

vheqmsft_1-1720753190854.pngvheqmsft_2-1720753211153.png


Create a KPI visualization

vheqmsft_3-1720753265426.png

Fianl output

vheqmsft_4-1720753289503.png

vheqmsft_5-1720753302698.png

 

Best regards,
Albert He

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

 

 

 

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Hi @Rockz ,

Here some steps that I want to share, you can check them if they suitable for your requirement.
Here is my test data:

vheqmsft_0-1720753119642.png

Create measures

Duration = 
VAR StartTime = 
IF(
    SELECTEDVALUE('Table'[Start Time]) <= TIME(8,0,0),
    TIME(8,0,0),
    SELECTEDVALUE('Table'[Start Time])
)
VAR EndTime = 
IF(
    SELECTEDVALUE('Table'[End Time] ) >= TIME(16,30,0),
    TIME(16,30,0),
    SELECTEDVALUE('Table'[End Time])
)
RETURN
IF(
    WEEKDAY(SELECTEDVALUE('Table'[Date])+ 1) <= 5,
    HOUR(EndTime - StartTime) + MINUTE(EndTime - StartTime)/60,
    0
)
Total Days = 
VAR _t = 
SUMMARIZE(
    'Table',
    'Table'[Date],
    'Table'[Start Time],
    'Table'[End Time],
    "Duration",[Duration]
)
RETURN
SUMX(_t,[Duration])/24

Create a numeric parameter

vheqmsft_1-1720753190854.pngvheqmsft_2-1720753211153.png


Create a KPI visualization

vheqmsft_3-1720753265426.png

Fianl output

vheqmsft_4-1720753289503.png

vheqmsft_5-1720753302698.png

 

Best regards,
Albert He

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

 

 

 

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors