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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
Anonymous
Not applicable

Calculating Number of Workdays for Each Month per day

Hi,

 

I have managed to calculate if the day is a working day or not, but I need another column for each transaction to show the number of working days. Instead of '1', I need it to calculate it as 23. For Example, 15th January 2018 in one column and the another column 23

PowerBI Community.PNGAny help will be greatly appreciated.

SJ

1 ACCEPTED SOLUTION
v-yulgu-msft
Employee
Employee

Hi @Anonymous,

 

Calculated column.

WorkingDay = IF(WEEKDAY('Date table'[Date],2)<=5,1,0)

Measure.

count workingdays =
CALCULATE (
    SUM ( 'Date table'[WorkingDay] ),
    ALLEXCEPT (
        'Date table',
        'Date table'[Date].[Year],
        'Date table'[Date].[Month]
    )
)

1.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.

View solution in original post

2 REPLIES 2
v-yulgu-msft
Employee
Employee

Hi @Anonymous,

 

Calculated column.

WorkingDay = IF(WEEKDAY('Date table'[Date],2)<=5,1,0)

Measure.

count workingdays =
CALCULATE (
    SUM ( 'Date table'[WorkingDay] ),
    ALLEXCEPT (
        'Date table',
        'Date table'[Date].[Year],
        'Date table'[Date].[Month]
    )
)

1.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.
Anonymous
Not applicable

Thank you very much! That is exactly what I needed!

Thank you,

 

SJ

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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