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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
Wkbdrguy
Employee
Employee

Need Help with Time calculation and filters

I'm working with the following calculation to get average broken into days, hours, Minutes.

TTA = Time to Acknowledge

------------------------------------

AVG TTA =

VAR Dur = AVERAGE('Table'[TTA (Seconds)])
VAR DAYS = IF ( Dur >= 1, INT ( Dur / 86400 ), BLANK () )
VAR HOURS = IF ( Dur >= 1, INT( MOD( Dur - ( Days * 86400 ), 86400 ) / 3600))
VAR MINUTES = INT ( MOD( Dur - ( Hours * 3600 ), 3600 ) / 60)

VAR D = IF ( DAYS > 1, FORMAT ( DAYS, "00" ) & "d" )
VAR H = IF ( HOURS > 1, FORMAT ( HOURS, "00" ) & "h")
VAR M = FORMAT ( MINUTES, "00" ) & "m "

RETURN
COMBINEVALUES ( " ", D, H, M )

------------------------------------

Problem i running into is the average time does not change when i use a slicer to filter for different months. I'm thinking that this is due to text within the calculation as the filter works fine when im not trying to break out the calculation to days, hours, and minutes.

1 ACCEPTED SOLUTION

Solved: I created 3 separate measures: 

 

AVG TTA (Days)  =

//CALCULATIONS

VAR Dur = AVERAGE ( Table[TTA (Sec)] )

//Separate Time

VAR DAYS = IF ( Dur >= 1, INT ( Dur / 86400 ), BLANK () )

VAR HOURS = IF ( Dur >= 1, INT ( MOD ( Dur - ( Days * 86400 ), 86400 ) / 3600 ), BLANK () )

VAR MINUTES = INT ( MOD ( Dur - ( Hours * 3600 ), 3600 ) / 60 )

//Format

VAR D =

IF ( DAYS > 1, FORMAT ( DAYS, "00" ), BLANK () )

RETURN

D

AVG TTA (Hours) =

//CALCULATIONS

VAR Dur = AVERAGE ( Table[TTA (Sec)] )

//Separate Time

VAR DAYS = IF ( Dur >= 1, INT ( Dur / 86400 ), BLANK () )

VAR HOURS = IF ( Dur >= 1, INT ( MOD ( Dur - ( Days * 86400 ), 86400 ) / 3600 ), BLANK () )

VAR MINUTES = INT ( MOD ( Dur - ( Hours * 3600 ), 3600 ) / 60 )

//Format

VAR H =

IF ( HOURS > 1, FORMAT ( HOURS, "00" ),BLANK())

RETURN

H

AVG TTA (Min) =

//CALCULATIONS

VAR Dur = AVERAGE ( Table[TTA (Sec)] )

//Separate Time

VAR DAYS = IF ( Dur >= 1, INT ( Dur / 86400 ), BLANK () )

VAR HOURS = IF ( Dur >= 1, INT ( MOD ( Dur - ( Days * 86400 ), 86400 ) / 3600 ), BLANK () )

VAR MINUTES = INT ( MOD ( Dur - ( Hours * 3600 ), 3600 ) / 60 )

//Format

VAR M =

FORMAT ( MINUTES, "00" )

RETURN

M

 

After creating the 3 measures I created a Small table to display the results and the filters/slicers for different months are now working to update the average:

 

Examples:

Capture.JPG

 

 

 

 

Capture1.JPG

 

 

 

 

Time to Activate = Time taken from ticket creation to the time someone begins working a ticket.

Time to Close = Time taken from ticket creation to the time a ticket is closed.

View solution in original post

3 REPLIES 3
v-shex-msft
Community Support
Community Support

Hi @Wkbdrguy ,

AFAIK, date/time values not able to apply aggregation calculations.
I'd like to suggest you to take a look at following blog to conserve them as time durations for calculate:

Aggregating Duration/Time

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

Figured it out. See other post.

Solved: I created 3 separate measures: 

 

AVG TTA (Days)  =

//CALCULATIONS

VAR Dur = AVERAGE ( Table[TTA (Sec)] )

//Separate Time

VAR DAYS = IF ( Dur >= 1, INT ( Dur / 86400 ), BLANK () )

VAR HOURS = IF ( Dur >= 1, INT ( MOD ( Dur - ( Days * 86400 ), 86400 ) / 3600 ), BLANK () )

VAR MINUTES = INT ( MOD ( Dur - ( Hours * 3600 ), 3600 ) / 60 )

//Format

VAR D =

IF ( DAYS > 1, FORMAT ( DAYS, "00" ), BLANK () )

RETURN

D

AVG TTA (Hours) =

//CALCULATIONS

VAR Dur = AVERAGE ( Table[TTA (Sec)] )

//Separate Time

VAR DAYS = IF ( Dur >= 1, INT ( Dur / 86400 ), BLANK () )

VAR HOURS = IF ( Dur >= 1, INT ( MOD ( Dur - ( Days * 86400 ), 86400 ) / 3600 ), BLANK () )

VAR MINUTES = INT ( MOD ( Dur - ( Hours * 3600 ), 3600 ) / 60 )

//Format

VAR H =

IF ( HOURS > 1, FORMAT ( HOURS, "00" ),BLANK())

RETURN

H

AVG TTA (Min) =

//CALCULATIONS

VAR Dur = AVERAGE ( Table[TTA (Sec)] )

//Separate Time

VAR DAYS = IF ( Dur >= 1, INT ( Dur / 86400 ), BLANK () )

VAR HOURS = IF ( Dur >= 1, INT ( MOD ( Dur - ( Days * 86400 ), 86400 ) / 3600 ), BLANK () )

VAR MINUTES = INT ( MOD ( Dur - ( Hours * 3600 ), 3600 ) / 60 )

//Format

VAR M =

FORMAT ( MINUTES, "00" )

RETURN

M

 

After creating the 3 measures I created a Small table to display the results and the filters/slicers for different months are now working to update the average:

 

Examples:

Capture.JPG

 

 

 

 

Capture1.JPG

 

 

 

 

Time to Activate = Time taken from ticket creation to the time someone begins working a ticket.

Time to Close = Time taken from ticket creation to the time a ticket is closed.

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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