This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hi all I have an excel file with several agents call center calls, and one of the columns is the duration of the calls. I have changed the type from text to duration, but when I use the score card visual, i only see 0.00 , it does not give me the minutes that is what i want. Is there any way to show all decimals ? as the duration is always on minutes, so i have 0.00.04.27 and things like that . Thanks! César
Solved! Go to Solution.
Hi @Anonymous ,
You need to create a new column using your "duration" column as per the calculation suggested by @amitchandak
Thanks,
Pragati
@Anonymous
If it text/varchar
new column in Minute =left([Duration],2)*60 + mid([Duration],4,2) +right([Duration],2)/60
If it is time /timestamp
new column in Minute =hour([Duration])*60 + minute([Duration]) +second([Duration])/60
@Anonymous , try like in Minute
new column in Minute =left([Duration],1)*24*60 + mid([Duration],3,2)*60 + mid([Duration],6,2)*1+right([Duration],2)/60
Hi @Anonymous ,
You need to create a new column using your "duration" column as per the calculation suggested by @amitchandak
Thanks,
Pragati
I am a rookie and i think i am lost about how to do that sorry :-S
The name of tjhe column is average time , and the format is
| 00:15:28 |
@Anonymous
If it text/varchar
new column in Minute =left([Duration],2)*60 + mid([Duration],4,2) +right([Duration],2)/60
If it is time /timestamp
new column in Minute =hour([Duration])*60 + minute([Duration]) +second([Duration])/60
Hi @Anonymous ,
Refer following article to correctly convert text value to time value.
https://community.powerbi.com/t5/Community-Blog/Aggregating-Duration-Time/ba-p/22486
If this helps and resolves the issue, appreciate a Kudos and mark it as a Solution! 🙂
Thanks,
Pragati
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 37 | |
| 28 | |
| 28 | |
| 19 | |
| 18 |
| User | Count |
|---|---|
| 69 | |
| 38 | |
| 32 | |
| 28 | |
| 24 |