Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago
Solved

Calculating Elapsed Business Hours Using DAX

Hello!

 

Need some help to calculate Business Hours using Dax.

I found the solution i almost need here:

 

Calculating Elapsed Business Hours Using DAX Part 2 - Excelerator BI

 

Could you please help what should be updated in DAX to add Calculation of Business Hours for different countries with different Public Holidays, so for tickets issued in Spain for example were excluded spanish Public holidays, same for Portugal etc:

Business Hours Time
Start 09:00
End 18:00

Holiday 2021 Country
New Year’s Day Friday, 1 January 2021 Spain
Good Friday Friday, 2 April 2021 Spain
Labor Day Saturday, 1 May 2021 Spain

Freedom Day Sunday, 25 April 2021 Portugal
Republic Day Tuesday, 5 October 2021 Portugal

Thanks!!!

Pbix File and the holidays table are below:

 

https://docs.google.com/spreadsheets/d/19_9q1CUGqjWzhhDAMrnSKIRAlk4VIFOT/edit?usp=sharing&ouid=115616621065590521898&rtpof=true&sd=true

 

https://drive.google.com/file/d/19YfqJi8mu_BSgjcZ1K9KHNNchKAKAInG/view?usp=sharing

 

  • Hi Anonymous 

     

    Try this formula

    Business Hours_2 =
    VAR _Start = 'Incident Fact'[createdon]
    VAR _End = 'Incident Fact'[Case_Solved]
    VAR _Country = 'Incident Fact'[Country]
    VAR _Workhours =
        SUMX (
            CALCULATETABLE (
                'Calendar',
                DATESBETWEEN ( 'Calendar'[Date], _Start, _End ),
                SWITCH (
                    _Country,
                    "Spain", 'Calendar'[Working Day Spain] = 1,
                    "Portugal", 'Calendar'[Working Day Portugal] = 1
                )
            ),
            MAX ( MIN ( 'Calendar'[End], _End ) - MAX ( 'Calendar'[Start], _Start ), 0 ) * 24
        )
    RETURN
        IF ( _Workhours, _Workhours, 0 )
    

     

    Best Regards,
    Community Support Team _ Jing
    If this post helps, please Accept it as Solution to help other members find it.

6 Replies

    • Anonymous's avatar
      Anonymous
      Not applicable

      Hi Amit,

       

      thanks for your response, i used the way you mentioned as well, it works, but the issue i face is how to include the following condition into DAX.

      I have the 'Incident_Fact' Table with all the cases and there is column with countries in which the case was created.

       

      And i have the 'Calendar' Table where columns per country indicate if this particular Date is holiday or Weekend. 

       

       

       

      Business Hours_2 =
      VAR _Start = 'Incident Fact'[createdon]
      VAR _End = 'Incident Fact'[Case_Solved]
      VAR _Workhours =
      SUMX(
          CALCULATETABLE(
              'Calendar',
              DATESBETWEEN('Calendar'[Date],_Start,_End),
              'Calendar'[Working Day] = 1
          ),
      MAX(MIN('Calendar'[End],_End) - MAX('Calendar'[Start],_Start),0) * 24
      )
      RETURN
      IF(_Workhours,_Workhours,0)

       

       

      I struggle to put this condition in the DAX above. It should be something like:
       
      If 'Incident'[country_name] = "Spain" then use 'Calendar'[Working Day Spain] =1, 
      If 'Incident'[country_name] = "Portugal" then use 'Calendar'[Working Day Portugal] =1 etc
       
      Thanks
      • v-jingzhang's avatar
        v-jingzhang
        Community Support

        Hi Anonymous 

         

        Try this formula

        Business Hours_2 =
        VAR _Start = 'Incident Fact'[createdon]
        VAR _End = 'Incident Fact'[Case_Solved]
        VAR _Country = 'Incident Fact'[Country]
        VAR _Workhours =
            SUMX (
                CALCULATETABLE (
                    'Calendar',
                    DATESBETWEEN ( 'Calendar'[Date], _Start, _End ),
                    SWITCH (
                        _Country,
                        "Spain", 'Calendar'[Working Day Spain] = 1,
                        "Portugal", 'Calendar'[Working Day Portugal] = 1
                    )
                ),
                MAX ( MIN ( 'Calendar'[End], _End ) - MAX ( 'Calendar'[Start], _Start ), 0 ) * 24
            )
        RETURN
            IF ( _Workhours, _Workhours, 0 )
        

         

        Best Regards,
        Community Support Team _ Jing
        If this post helps, please Accept it as Solution to help other members find it.