How to get next workday date when format is yyyymmdd without helper column

andycreber

Board Regular
Joined
May 20, 2010
Messages
74
Office Version
  1. 2016
How to get next workday date when format is yyyymmdd without helper column

Cell A1 = 20240205

Cell A2 wanting formula from data in A1 to be next working day

many thanks
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
Maybe this will help:
Book1
AB
1Format onlyNew date
22024020506/02/2024
3
4Just numbers
52024020506/02/2024
Sheet1
Cell Formulas
RangeFormula
B2B2=A2+1
B5B5=DATE(LEFT(A5,4),MID(A5,5,2),RIGHT(A5,2))+1
 
Upvote 0
Try something like the below (please note I have used 20240209 to show what happens with a weekend). There is also an option to add in a list of holidays
Book1
AB
12024020520240206
22024020920240212
Sheet2
Cell Formulas
RangeFormula
B1:B2B1=WORKDAY(TEXT(A1,"0000-00-00")+0,1)


Cells in column B are formatted as yyyymmdd and assumes column A are just numbers and not a real date formatted as yyyymmdd
 
Last edited:
Upvote 0
Sorry, my bad, I missed the workday part. I clearly need a coffee.
 
Upvote 0

Forum statistics

Threads
1,223,243
Messages
6,170,964
Members
452,371
Latest member
Frana

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top