Forum Discussion

Dain's avatar
Dain
Frequent Visitor
8 years ago
Solved

dispaly Duration

Hi All...

 

Help needed one more time.

I have two Time columns in my table.I want to find the difference of time and append this duration with some text.

 

time1           time 2              remarks

02:30:00     03:00:00     duration is 30 Minutes

21:00:00     22:30:00     duration is 1hour30Minutes

 

Can someone please help.Thanks.

 

  • Hi Dain,

     

    Try out this formula please.

    remarks =
    VAR minutes =
        DATEDIFF ( [time1], [time2], MINUTE )
    VAR h =
        INT ( minutes / 60 )
    VAR m =
        MOD ( minutes, 60 )
    RETURN
        IF (
            h = 0,
            "Duration is " & m
                & " Minutes",
            "Duration is " & h
                & " hours "
                & m
                & " Minutes"
        )

    display_duration

     

    Best Regards,

    Dale

4 Replies

  • v-jiascu-msft's avatar
    v-jiascu-msft
    Microsoft Employee

    Hi Dain,

     

    Try out this formula please.

    remarks =
    VAR minutes =
        DATEDIFF ( [time1], [time2], MINUTE )
    VAR h =
        INT ( minutes / 60 )
    VAR m =
        MOD ( minutes, 60 )
    RETURN
        IF (
            h = 0,
            "Duration is " & m
                & " Minutes",
            "Duration is " & h
                & " hours "
                & m
                & " Minutes"
        )

    display_duration

     

    Best Regards,

    Dale

    • Dain's avatar
      Dain
      Frequent Visitor

      Thank You so much for the Answer!.

       

      I am struggling to implement another logic.Could you please have a look on it.

       

      I have a date slicer with start and end dates.I want to find the first working day of month for each months tat comes in that slicer start n end dates.For each first working day,i want to execute a specific logic.How can i do it dynamically

      • v-jiascu-msft's avatar
        v-jiascu-msft
        Microsoft Employee

        Hi Dain,

         

        My pleasure. Seems it's a new topic. I would suggest you create a new thread in this forum. If you can post a sample, that would be helpful for the community to work out an answer.

         

        Best Regards,

        Dale