Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

Adding 1 weekday to date

Deal Type Date New Date DMT 28 Apr   ABC 28 Apr   XYZ 29 Apr     Hi   I want to create a new column and where deal type = DMT Or ABC, I want the New Date to be Date + 1 Wee...
  • v-easonf-msft's avatar
    v-easonf-msft
    5 years ago

    Hi, Anonymous 

    If you want to add one day,please try calculated column as below:

     

    New Date =
    IF ( 'Table'[Deal Type] IN { "DMT", "ABC" }, 'Table'[Date] + 1, 'Table'[Date] )
    

     

    If you want to add one working day,please try calculated column as below:

     

    New Date2 = 
    IF (
        'Table'[Deal Type] IN { "DMT", "ABC" },
        SWITCH (
            WEEKDAY ( 'Table'[Date], 2 ),
            5, 'Table'[Date] + 3,
            6, 'Table'[Date] + 2,
            'Table'[Date] + 1
        ),
        'Table'[Date]
    )
    

     

    Please check my attached pbix file for more details.

     

    If it doesn't meet your requirement ,please share your expected result in excel.

    Best Regards,
    Community Support Team _ Eason
    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.