The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
107 | |
82 | |
76 | |
46 | |
39 |
User | Count |
---|---|
135 | |
109 | |
70 | |
64 | |
55 |