=Today()

Woody Pecker

New Member
Joined
Apr 11, 2008
Messages
35
Office Version
  1. 365
Platform
  1. Windows
  2. MacOS
I know I'm going to sound thick, but I just can't get this to work.

I have a formula that needs to report back "dddd dd/mm/yyyy" based on =Today(), but if =Today()="Friday" I need it to report "dddd dd/mm/yyyy" as 3 days later, but for any other day just report the next day.

Please help because it's driving me absolutely nuts & I know it's a simple answer.
 

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.
If today was a Thursday what should it report back? Friday or Saturday?
 
Upvote 0
=IF( WEEKDAY(A1,1)=6, TODAY()+3, TODAY())
 
Upvote 0
I have a formula that needs to report back "dddd dd/mm/yyyy" based on =Today(), but if =Today()="Friday" I need it to report "dddd dd/mm/yyyy" as 3 days later, but for any other day just report the next day.
Sounds like you could use
=WORKDAY(TODAY(),1)
& format the cell as "dddd dd/mm/yyyy"

or if you want text returned
=TEXT(WORKDAY(TODAY(),1),"dddd dd/mm/yyyy")
 
Last edited:
Upvote 0
Excellent, I knew it was simple, feeling a tad thick.
Are you sure? doesn't that formula for days that aren't Friday return Today's date and not Today + 1?
I think you should look the 2 formula Peter posted in post #5.
 
Upvote 0

Forum statistics

Threads
1,215,214
Messages
6,123,664
Members
449,114
Latest member
aides

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