Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Rebender
Frequent Visitor

How to sort a Time Duration

I have created a calculated column that gives me a Time Duration in Days, Hours, Minutes, Seconds.  What I would like to do now is be able to sort the column in my table visual, but it is not putting it in the correct order.  Please see the attached image.  Can someone tell me how to be able to sort by this column?  Thank you for your assistance!

Duration Sort Image.png

1 ACCEPTED SOLUTION

I solved my problem by fixing the formatting of the Value.  I added a second "0" to the day portion of the following code and it worked.

FORMAT(dayNo,"#00")&" day "&FORMAT(hourNo,"#00")&":"&FORMAT(minuteNO,"#00")&":"&FORMAT(secondNo,"#00")

View solution in original post

3 REPLIES 3
v-yulgu-msft
Employee
Employee

Hi @Rebender,

 

Please create calculated columns.

Final rank =
RANKX (
    Dataset2,
    (
        RANKX ( Dataset2, LEFT ( Dataset2[Duration], 2 ),, ASC )
            + DIVIDE (
                RANKX ( Dataset2, RIGHT ( Dataset2[Duration], 8 ),, ASC ),
                COUNTROWS ( Dataset2 ) + 1
            )
    ),
    ,
    ASC,
    DENSE
)

1.PNG2.PNG

 

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thank you for your quick response, but that did not work.  It still sorted it in the same order.  If you notice in the picture, it is going from 1 day, 11 day, 12, 2 day.  I need it to go 1 day, 2 day, 11 day, 12 day.  Would it be better if I used the mintes column that I used to format my duration in the Final Rank column instead???

I solved my problem by fixing the formatting of the Value.  I added a second "0" to the day portion of the following code and it worked.

FORMAT(dayNo,"#00")&" day "&FORMAT(hourNo,"#00")&":"&FORMAT(minuteNO,"#00")&":"&FORMAT(secondNo,"#00")

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.