Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi there,
I've been using PBI for the last 2 month and this community is awsome, this is my first post so I'll do my best for you to understand.
I want to show in a matrix the average handle time per agent / per date. How do I keep only the dates with values?
I'm sure the issue is the measure because if I remove it from the matrix then it's ok.
This is what I have for the measure and I have a table date from 1 to many in the fact table.
Avg Open Time =
FORMAT(AVERAGE(Contrato[TimeOpenN]), "HH:MM:SS")
Thanks in advance
Solved! Go to Solution.
try like this and see if it works:
Avg Open Time =
var _a = AVERAGE(Contrato[TimeOpenN])
RETURN IF( NOT(ISBLANK(_a)), FORMAT(_a, "HH:MM:SS"))
Thank you!
try like this and see if it works:
Avg Open Time =
var _a = AVERAGE(Contrato[TimeOpenN])
RETURN IF( NOT(ISBLANK(_a)), FORMAT(_a, "HH:MM:SS"))
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.