Formula ?

zone709

Well-known Member
Joined
Mar 1, 2016
Messages
2,125
Office Version
  1. 365
Platform
  1. Windows
Hi this formula gives me 7/23/2017 and changes this Sunday to 7/30/2017. It changes every Sunday.

What I need help for it to do is to wait till Tuesday to change the date.

So example: I need it to change to 7/23/2017 when Tuesday hits meaning tomorrow rather then it change on a Sunday and then change it when next Tuesday comes around to 7/30/2017.

Any help thanks


=TODAY()-WEEKDAY(TODAY())+1
 

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
Will this do the trick?

Code:
=IF(WEEKDAY(TODAY())>=3,TODAY()-WEEKDAY(TODAY())+1,TODAY()-WEEKDAY(TODAY())+1-7)
 
Upvote 0
Hi guys thanks for the reply. I put all 3 formulas in 3 different cells and they all say 7/16/2017. If these are right tomorrow it will change to 7/23/2017. Thanks again cheers
 
Upvote 0
Hi guys back here yes I actually needed this for one of my sheets, but I just realized now that I used this formula in another sheet but need similar but different results. Every Tuesday I need it to give me this weeks Sunday date. So today is Wednesday should be returning 7/30/2017. Then next Tuesday would be August 1st I need it to change to 8/06/2017. I'm going ahead this time. thanks
 
Upvote 0
Add 7 on each formula. So my formula (post #3) becomes
=TODAY()-WEEKDAY(TODAY()+5)+6

M.
 
Upvote 0

Forum statistics

Threads
1,223,904
Messages
6,175,295
Members
452,632
Latest member
jladair

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