Excel Print Dates

varunwalla

New Member
Joined
Aug 13, 2020
Messages
32
Office Version
  1. 365
  2. 2019
Platform
  1. Windows
  2. Mobile
  3. Web
How can print dates in excel from monday to friday in seperate column. Let say in

A1 i need to display the current date and in

A2 i need to display the next date and in

A3 i need to display the next date of column A2

but dates of saturday & sunday should not be displayed in A1,A2,A3
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
Hello,

in A1 - =IF(WEEKDAY(TODAY(),2)>5,TODAY()+2,TODAY())

in A2 - =IF(WEEKDAY(A1,2)=5,A1+3,A1+1)

then copy A2 into A3

Think this should work.
 
Upvote 0
Another option
In A1
Excel Formula:
=TODAY()
In A2 copied down
Excel Formula:
=WORKDAY(A1,1)
 
Upvote 0
Solution

Forum statistics

Threads
1,214,632
Messages
6,120,655
Members
448,975
Latest member
sweeberry

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