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

How to find last four business days in a month using DAX Query?

I have a ITEM table which has Item_date column, I want to count all days except last 4 business days of month using DAX. (Also, I have DateDimension table which has following columns:

 Capture.JPG)

1 ACCEPTED SOLUTION

Hi sjain17,

 

Create a measure like pattern below:

Measure =
CALCULATE (
COUNT ( DateDimension[Date] ),
FILTER (
DateDimension,
DateDimension[IsHoliday]
<> 1 & DateDimension[Isweekend]
<> 1
)
)

If you have other contion in your item table,like this:

Measure =
CALCULATE (
    COUNT ( ItemTable[Item] ),
    FILTER (
        DateDimension,
        DateDimension[IsHoliday]
            <> 1 & DateDimension[Isweekend]
            <> 1 & OtherConditions
    )
)

Capture.PNG 

 

Regards,

Jimmy Tao

View solution in original post

4 REPLIES 4
v-yuta-msft
Community Support
Community Support

Hi sjain17,

 

Excluding the business day is not like excluding last 4 days in a month, I would recommend you to create a column which mask workday and other days(weekends or holiday) based on your company schedule, then you can filter all the workday records and use a RANKX() function to rank all workdays, after that you can use measure like pattern like below to filter out all the workdays which can meet your requirement.

calculate(..., filter(table,table[RANK] > 4)) 

Regards,

Jimmy Tao

Anonymous
Not applicable

Thanks for your reply Jimmy. I appreciate your help.

Can you please let me know DAX to mask weekend and list of holiday from date column. Because without aggregate function I am not able to do that. Also, I am using direct query.

My DateDimension Table is as below. I have another table which has Item_date column, I will create a join between Date column to Item_date.

Capture.JPG

Hi sjain17,

 

Create a measure like pattern below:

Measure =
CALCULATE (
COUNT ( DateDimension[Date] ),
FILTER (
DateDimension,
DateDimension[IsHoliday]
<> 1 & DateDimension[Isweekend]
<> 1
)
)

If you have other contion in your item table,like this:

Measure =
CALCULATE (
    COUNT ( ItemTable[Item] ),
    FILTER (
        DateDimension,
        DateDimension[IsHoliday]
            <> 1 & DateDimension[Isweekend]
            <> 1 & OtherConditions
    )
)

Capture.PNG 

 

Regards,

Jimmy Tao

Greg_Deckler
Super User
Super User

Tough to say exactly without sample source data to test with. Please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490

 

But, something along the lines of:

 

VAR __LastDayofMonth = DAY(EOMONTH([Item_date],0)) //this will give you the last day of the month

VAR __LastDaytoCalculate = __LastDayofMonth - 4 //last day you want a calculation for

Not sure exactly what you are going for or trying to calculate so hard to be specific. Are you trying to count days by month, by year? You just want the count?


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

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.