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! Im really new to power bi and was wondering if anyone can help me out! I basically have a card visualisation which displays a number of minutes
I want this number to display in hours! its only a single line of text on the sharepoint list.
I was thinking either is it possible to divide this number by 60 every time it shows up a value or some how format it so it displays the amount of hours. I dont want to change it from single line of text on the sharpeoint list as the list is also part of a flow that I have running which will mess things up!
Please help! and thanks in advance!
Solved! Go to Solution.
You're going to have to create a measure, it's going to go something like this
Hi @ABill234 ,
You may create measure like DAX below .
Hour =
IF (
ISNUMBER ( [Time] ),
DIVIDE ( [Time], 60 ),
DIVIDE ( VALUE ( [Time] ), 60 )
)
Best Regards,
Amy
Community Support Team _ Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
HI @ABill234
First, I would check if the data is a number or not, then divide it.
Card_by_60 =
IF(ISNUMBER([Data]),DIVIDE([numerator],60,0),0)
Hi @ABill234 ,
See if this helps
https://community.powerbi.com/t5/Quick-Measures-Gallery/Chelsie-Eiden-s-Duration/td-p/793639
https://www.powerbitalks.com/2019/12/convert-seconds-to-hhmmss-format.html
Regards,
Harsh Nathani
Did I answer your question? Mark my post as a solution! Appreciate with a Kudos!! (Click the Thumbs Up Button)
You're going to have to create a measure, it's going to go something like this
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 |
|---|---|
| 38 | |
| 28 | |
| 27 | |
| 22 | |
| 18 |
| User | Count |
|---|---|
| 67 | |
| 37 | |
| 32 | |
| 25 | |
| 25 |