Forum Discussion
Anonymous
5 years agoNot applicable
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...
- 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.
Greg_Deckler
Community Champion
5 years agoAnonymous Maybe:
New Date =
VAR __Dates = ADDCOLUMNS(CALENDAR([Date]+1,[Date]+3),"__Weekday",WEEKDAY([Date],2))
RETURN
MINX(FILTER(__Dates,[__Weekday]<6),[Date])