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

direct application of WORKDAY function like in excel

Hello,

 

May I know how to create WORKDAY function in powerBI with DAX function? I have no holidays to add. I have a column with dates and another column with numerics. I just wanted to get the result in new column with the workday by adding numeric to my existing column. Is there a way to do it directly without any additional tables please?

2 ACCEPTED SOLUTIONS


@Anonymous wrote:

Dear @Phil_Seamark

 

Thanks for the response.

In your syntax, i couldn't figure out where to key in my customized day to add for each row.

I have attached my sample data. Column C is my requirement. Could you please have a look?

 

Capture.JPG

 

Thanks in advance!


@Anonymous

You can create an calendar table as below

dimdate =
VAR onlyWorkdays =
    FILTER (
        CALENDAR ( "2017-01-01", "2017-12-31" ),
        WEEKDAY ( [Date] ) <> 1
            && WEEKDAY ( [Date] ) <> 7
    )
RETURN
    ADDCOLUMNS (
        onlyWorkdays,
        "Index", RANKX ( onlyWorkdays, [Date],, ASC, DENSE )
    )

Then connect your source table to the calendar table,  create a measure as

exw date =
VAR DateIndex =
    MAX ( dimdate[Index] )
VAR LeadTime =
    MAX ( 'Table'[Lead Time] )
RETURN
    MAXX (
        FILTER ( ALL ( dimdate ), dimdate[Index] = DateIndex + LeadTime ),
        dimdate[Date]
    )

Capture.PNG

 

See more details in the pbix file.

View solution in original post

Hi @Anonymous

 

This is one way to do it as a calculated column.  Just replace Table3 with your own tablename

 

exw date = 
VAR myDate = ADDCOLUMNS(FILTER(CALENDAR(Table3[Order Date],TODAY()),WEEKDAY([Date],3)<5),"Days",1)
VAR Cumulative = 
    ADDCOLUMNS(
        myDate,
        "D", SUMX(filter(myDate,[Date]<EARLIER([Date])),[Days])
                    )
RETURN 
    MINX(FILTER(Cumulative,[D]='Table3'[Lead Time]),[Date])

 

image.png


To learn more about DAX visit : aka.ms/practicalDAX

Proud to be a Datanaut!

View solution in original post

13 REPLIES 13

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.