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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
mohammadyousaf
Resolver II
Resolver II

Working Days.

Hi,  I am trying to count working days with the following data model. There are no direct relations between table-1 and table 2. 

I am trying to count number of days for common days as 1 day and for different dates 1 from each table where date doesn't match with each other. 

Any help is much appreciated. Thank you. 


Table-1 connected to Date Table
ID & Date 1 27-07-2023 2 28-07-2023 3 29-07-2023 4 30-07-2023 5 30-07-2023

Table-2 connected to Date Table
ID &  Date 1 27-07-2023 2 28-07-2023 3 29-07-2023 4 30-07-2023 5 31-07-2023

2 ACCEPTED SOLUTIONS
v-rzhou-msft
Community Support
Community Support

Hi @mohammadyousaf ,

 

I suggest you to add a weekday column in your date table.

DimDate =
ADDCOLUMNS (
    CALENDAR ( DATE ( 2023, 01, 01 ), DATE ( 2023, 12, 31 ) ),
    "Year", YEAR ( [Date] ),
    "Month", MONTH ( [Date] ),
    "Weekday", WEEKDAY ( [Date], 2 )
)

For reference:

Calculate Working Days in Power BI

Then create measures as below.

Count =
CALCULATE (
    COUNTROWS ( 'Table' ),
    FILTER ( DimDate, NOT ( DimDate[WeekDay] IN { 6, 7 } ) )
)

 

Best Regards,
Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.]

 

View solution in original post

mohammadyousaf
Resolver II
Resolver II

Thank you @v-rzhou-msft for the solution. However,  I have achieved it using 3 measures. 

This gives me the number of days for non blank values from both tables. 

1.  Tabl1_IDs = Calculate(
COUNTROWS (Tabl1), 
Filter(table1, Date))

2. Table2_IDs = Calculate(
COUNTROWS (Table2), 
Filter(Tabe2, Date)

No_Of_Days = 

COUNTROWS(
    FILTER(
        _calendar,
        [Table1_IDs] ||
        [Table2_IDS]
    )
)



View solution in original post

2 REPLIES 2
mohammadyousaf
Resolver II
Resolver II

Thank you @v-rzhou-msft for the solution. However,  I have achieved it using 3 measures. 

This gives me the number of days for non blank values from both tables. 

1.  Tabl1_IDs = Calculate(
COUNTROWS (Tabl1), 
Filter(table1, Date))

2. Table2_IDs = Calculate(
COUNTROWS (Table2), 
Filter(Tabe2, Date)

No_Of_Days = 

COUNTROWS(
    FILTER(
        _calendar,
        [Table1_IDs] ||
        [Table2_IDS]
    )
)



v-rzhou-msft
Community Support
Community Support

Hi @mohammadyousaf ,

 

I suggest you to add a weekday column in your date table.

DimDate =
ADDCOLUMNS (
    CALENDAR ( DATE ( 2023, 01, 01 ), DATE ( 2023, 12, 31 ) ),
    "Year", YEAR ( [Date] ),
    "Month", MONTH ( [Date] ),
    "Weekday", WEEKDAY ( [Date], 2 )
)

For reference:

Calculate Working Days in Power BI

Then create measures as below.

Count =
CALCULATE (
    COUNTROWS ( 'Table' ),
    FILTER ( DimDate, NOT ( DimDate[WeekDay] IN { 6, 7 } ) )
)

 

Best Regards,
Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.]

 

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.