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
Shem
Frequent Visitor

I am looking to return the next working day as tomorrow in a Power BI column.

I am looking to return the next working day as tomorrow in a Power BI column. I have the formula that works for Monday to Thursday, however, on a Friday it returns Saturday. Instead i would like Monday to be labelled as 'next working day'.

 

Below is the formula:

 

Return day = IF(DateKey[Date]=TODAY()-1,"yesterday",IF(DateKey[Date]=TODAY()+1,"next work day",IF(DateKey[Date]=TODAY(),"today",("notapplicable"))))

 

I am using this to filter my figures on today, next work day and also last work day.

 

Thanks in advance.

 

2 ACCEPTED SOLUTIONS
Anonymous
Not applicable

Believe someone else must have a smart way to go.

 

Basically, the following nest IF means to identify if Today is Friday or Saturday, if not, go use the common +1 logic to mark Next Working day; if it is Firday, +3 as the Next Working day, if it is Saturday, + 2 as the Next Workding day.

 

ReturnDay = 
IF (
    FORMAT ( TODAY (), "DDDD" ) <> "Friday"
        && FORMAT ( TODAY (), "DDDD" ) <> "Saturday",
    IF (
        'DateKey'[Date]
            = TODAY () - 1,
        "Yesterday",
        IF (
            'DateKey'[Date] = TODAY (),
            "Today",
            IF ( 'DateKey'[Date] = TODAY () + 1, "Next Work Day", "Notapplicable" )
        )
    ),
    IF (
        FORMAT ( TODAY (), "DDDD" ) = "Friday",
        IF (
            'DateKey'[Date]
                = TODAY () - 1,
            "Yesterday",
            IF (
                'DateKey'[Date] = TODAY (),
                "Today",
                IF ( 'DateKey'[Date] = TODAY () + 3, "Next Work Day", "Notapplicable" )
            )
        ),
        IF (
            FORMAT ( TODAY (), "DDDD" ) = "Saturday",
            IF (
                'DateKey'[Date]
                    = TODAY () - 1,
                "Yesterday",
                IF (
                    'DateKey'[Date] = TODAY (),
                    "Today",
                    IF ( 'DateKey'[Date] = TODAY () + 2, "Next Work Day", "Notapplicable" )
                )
            )
        )
    )
)

2018-06-29_10-28-01.png

 

View solution in original post

Hi there

 

Here is the way I would do it with Variables and the SWITCH Statement

T/Y/Tom = 
VAR TodaysDate =
    TODAY ()
VAR YesterdayDate =
    TODAY () - 1
VAR NextMondaysDate =
    SWITCH(TRUE(),
        'Date'[Date] - WEEKDAY('DateKey'[Date],2)+1 >= TodaysDate, 'DateKey'[Date] - WEEKDAY('DateKey'[Date],2)+1,
        TODAY()-9
    )
VAR NextWorkingDay =
    SWITCH (
        TRUE (),
        'DateKey'[Date] = TodaysDate, "Today",
        'DateKey'[Date] = YesterdayDate, "Yesterday",
        'DateKey'[Date] = NextMondaysDate, "Next Working Day",
        "Not Applicable"
    )
RETURN
    NextWorkingDay




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!







Power BI Blog

View solution in original post

7 REPLIES 7
v-jiascu-msft
Employee
Employee

Hi @Shem,

 


Can you mark the proper answer as a solution please?

 

Best Regards,

Dale

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

Believe someone else must have a smart way to go.

 

Basically, the following nest IF means to identify if Today is Friday or Saturday, if not, go use the common +1 logic to mark Next Working day; if it is Firday, +3 as the Next Working day, if it is Saturday, + 2 as the Next Workding day.

 

ReturnDay = 
IF (
    FORMAT ( TODAY (), "DDDD" ) <> "Friday"
        && FORMAT ( TODAY (), "DDDD" ) <> "Saturday",
    IF (
        'DateKey'[Date]
            = TODAY () - 1,
        "Yesterday",
        IF (
            'DateKey'[Date] = TODAY (),
            "Today",
            IF ( 'DateKey'[Date] = TODAY () + 1, "Next Work Day", "Notapplicable" )
        )
    ),
    IF (
        FORMAT ( TODAY (), "DDDD" ) = "Friday",
        IF (
            'DateKey'[Date]
                = TODAY () - 1,
            "Yesterday",
            IF (
                'DateKey'[Date] = TODAY (),
                "Today",
                IF ( 'DateKey'[Date] = TODAY () + 3, "Next Work Day", "Notapplicable" )
            )
        ),
        IF (
            FORMAT ( TODAY (), "DDDD" ) = "Saturday",
            IF (
                'DateKey'[Date]
                    = TODAY () - 1,
                "Yesterday",
                IF (
                    'DateKey'[Date] = TODAY (),
                    "Today",
                    IF ( 'DateKey'[Date] = TODAY () + 2, "Next Work Day", "Notapplicable" )
                )
            )
        )
    )
)

2018-06-29_10-28-01.png

 

Thank you sooo much for your reply. The query worked perfectly! Is there any chance you could indicate how i would alter this query so that Friday gave me the next 3 days instead of just the third day.

 

Sorry, a change in requirements from the powers above.

 

Thanks,

 

Shem

Shem
Frequent Visitor

For goe this i think i got my required formula using 'OR'

 

Hi there

 

Here is the way I would do it with Variables and the SWITCH Statement

T/Y/Tom = 
VAR TodaysDate =
    TODAY ()
VAR YesterdayDate =
    TODAY () - 1
VAR NextMondaysDate =
    SWITCH(TRUE(),
        'Date'[Date] - WEEKDAY('DateKey'[Date],2)+1 >= TodaysDate, 'DateKey'[Date] - WEEKDAY('DateKey'[Date],2)+1,
        TODAY()-9
    )
VAR NextWorkingDay =
    SWITCH (
        TRUE (),
        'DateKey'[Date] = TodaysDate, "Today",
        'DateKey'[Date] = YesterdayDate, "Yesterday",
        'DateKey'[Date] = NextMondaysDate, "Next Working Day",
        "Not Applicable"
    )
RETURN
    NextWorkingDay




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!







Power BI Blog

Shem
Frequent Visitor

Great, thanks this seemed to work as well as the formula above.

Anonymous
Not applicable

Add another nested IF in next working day logic:

 

IF(TODAY()="Friday","Monday","next work day"

 

The above snippet will come after the underlined part.

 

Return day = IF(DateKey[Date]=TODAY()-1,"yesterday",IF(DateKey[Date]=TODAY()+1,"next work day",IF(DateKey[Date]=TODAY(),"today",("notapplicable"))))

 

Thanks

Raj

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.