Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi,
In another thread , Creating Time Filter, I was looking for a solution to filter First Response Time (Mins) according to create date
I wanted to know the average First response time (mins) that were created during working hours 08:00 - 17:00
and average First response time (mins) that were created outside working hours 17:01 - 7:59
In my previous thread, @Anonymous, provided a solution by creating a measure
During Working Hours
average(8:00-17:00) = var _a=CALCULATE(SUM('Table'[First Response (Minute)]),FILTER('Table', 'Table'[Create Time]<=TIME(17,00,00) && 'Table'[Create Time]>=TIME(8,00,00)))
var _b=COUNTROWS(FILTER('Table','Table'[Create Time]<=TIME(17,00,00) && 'Table'[Create Time]>=TIME(8,00,00)))
return
DIVIDE(_a,_b,0)
Outside Working Hours
average (17:01-7:59) = var _c=CALCULATE(SUM('Table'[First Response (Minute)]),FILTER('Table', 'Table'[Create Time]>=TIME(17,01,00) || 'Table'[Create Time]<=TIME(7,59,00)))
var _d=COUNTROWS(FILTER('Table','Table'[Create Time]>=TIME(17,01,00) || 'Table'[Create Time]<=TIME(7,59,00)))
return
DIVIDE(_c,_d,0)
It was working fine but i changed my data source and suddenly they are returning "blanks" and i can't figure out what went wrong!!
I have attached a sample data file
Column E - Create Time
Column M - First Response Time (Mins)
I want to create a measure that finds the average First Response Time (Mins) that occured during working hours (08:00-17:00) and those that occured outside working hours (17:01-7:59)
Thank you,
@anusornkhurana , Avg at what level
Example at hour level
Sumx( Values('Table'[Hour]),
CALCULATE(SUM('Table'[First Response (Minute)]),FILTER('Table', 'Table'[Create Time]<=TIME(17,00,00) && 'Table'[Create Time]>=TIME(8,00,00)))
)
At the hour level
average of first response (mins) that occured to all tasks created [Create Time] between 8.00-17.00
I tried the measure you gave me it didn't work. It is still returning Blank value 😞
Thank you!
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
60 | |
58 | |
54 | |
36 | |
33 |
User | Count |
---|---|
79 | |
66 | |
45 | |
45 | |
43 |