Formula for Today() to Show if it is a Certain Week Commencing

ewalker

New Member
Joined
Oct 22, 2018
Messages
4
Good morning all, i am looking for some assistance if at all possible.

I have a spreadsheet with a list of dates (all Mondays) that represent weeks within a large work planner I am developing.

I am looking for an IF formula that will let me know if “today()” is within a certain week i.e. if today was the 24 October 2018, the cell containing week starting 22 October would be indicated.

Any assistance would be appreciated.

[TABLE="width: 500"]
<tbody>[TR]
[TD]Week Commencing[/TD]
[TD]Current Week (Yes / No)[/TD]
[/TR]
[TR]
[TD]15 Oct 18[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]22 Oct 18[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]29 Oct 18[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]05 Oct 18[/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
Hi. Presuming monday is your first day of the week then maybe this:

=IF(AND(A2<=TODAY(),A2+7>TODAY()),"Yes","No")
 
Upvote 0

Forum statistics

Threads
1,225,743
Messages
6,186,777
Members
453,370
Latest member
juliewar

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