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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
v_mark
Helper V
Helper V

Monthly Average Tickets Age in Hours

I'm sorry to bother you during the weekend. I've been trying to figure this business requirement out. 
The intent is to get the Monthly Average in hours based on 

1. Average age that are not Closed

2.  Average age that are Closed

 

and use a line chart to indicate the two measures. Similar to the view below. Don't worry about the Month's Initial I can do it. 

v_mark_0-1639173647411.png

 

Duration (Hrs) = 
VAR blankclosedates = DATE(1900,1,1) 
VAR diffhrs = If('Sample Data'[ClosedDateTime] = blankclosedates, BLANK(),
DATEDIFF('Sample Data'[CreatedDateTime], 'Sample Data'[ClosedDateTime], HOUR))
RETURN diffhrs


///// Looks like simple average will not work 

Average Hourly = AVERAGE('Sample Data'[Duration (Hrs)] )

 

 

I do have my date table set up inside my model. 
Any ideas on how to approach this type of issue?  TIA

Sample Pbix file 

 

 

 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @v_mark ,

 

Create a month column.

Month = FORMAT('Sample Data'[Date],"MMMM")

Then create measures.

_closed = CALCULATE(AVERAGE('Sample Data'[Duration (Hrs)]),FILTER(ALLEXCEPT('Sample Data','Sample Data'[Month]),'Sample Data'[Status]="closed"))

not_closed = CALCULATE(AVERAGE('Sample Data'[Duration (Hrs)]),FILTER(ALLEXCEPT('Sample Data','Sample Data'[Month]),'Sample Data'[Status]<>"closed"))

Capture.PNG

 

Best Regards,

Jay

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Hi @v_mark ,

 

Create a month column.

Month = FORMAT('Sample Data'[Date],"MMMM")

Then create measures.

_closed = CALCULATE(AVERAGE('Sample Data'[Duration (Hrs)]),FILTER(ALLEXCEPT('Sample Data','Sample Data'[Month]),'Sample Data'[Status]="closed"))

not_closed = CALCULATE(AVERAGE('Sample Data'[Duration (Hrs)]),FILTER(ALLEXCEPT('Sample Data','Sample Data'[Month]),'Sample Data'[Status]<>"closed"))

Capture.PNG

 

Best Regards,

Jay

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

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

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

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