March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hello,
I have measure which I have created to do average of time. I am displaying this value in a matrix. This is how the matrix looks -
Now here when I add the measure measureAverageHandle, I get the agents which have no values as well. I want to show just those agents which have that value.
Here if I remove the measure I just get Agents which has value. I have tried adding visual filter is not blank but that does not work.
measureAverageHandle is a Text type and cannot be converted to time format.
AgentEnterpriseName belongs to TableA and measureAverageHandle is based on TableB. Both these table have relationship via AgentId
measureAverageHandle is calculated as below -
measureAverageHandled = FORMAT((SUM(TableB[calculatedTalkTime])/SUM(TableB[CallsHandled]))/86400, "hh:mm:ss")
Hi @ashaikh
It seems the hours are more than 24,it could not be changed to time format.Please refer to this post to get the time data type.Sample data and expected output will be helpful to provide an accurate solution.
Regards,
@v-cherch-msft I dont want to get into Time datatype. What I am looking to do is get rid of agent name which have blank value.
Try:
measureAverageHandled = IF(SUM(TableB[calculatedTalkTime] > 0 ; FORMAT((SUM(TableB[calculatedTalkTime])/SUM(TableB[CallsHandled]))/86400, "hh:mm:ss"); BLANK())
Also make sure that you have show items with no data turned off:
@tex628 Are you creating here a calculated column or a measure?
Also what I exactly need is filter the agent is there a way I can do that in the filter. Instead of this filter you are showing.
Measure,
If you just want to filter away agents with no data, put a filter in visual filters:
A "Is not blank" filter should remove the blank rows for the visual
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
124 | |
87 | |
85 | |
70 | |
51 |
User | Count |
---|---|
205 | |
153 | |
97 | |
79 | |
69 |