Setting reminder in excel with no end date

satoshi_sd

New Member
Joined
Nov 5, 2021
Messages
25
Office Version
  1. 365
Platform
  1. Windows
Hi,

I need help to set a reminder in excel (preferably a formula) and to recur every week interval. Example, the date now is showing due date on 12/2/2023 and after 12/2/2023, it will automatically change to 19/2/2023 (in which I don't need to update anything and it will keep running).

The idea in my mind is something to do =today() but I can't squeeze anything out from my brain :(
 

Excel Facts

Whats the difference between CONCAT and CONCATENATE?
The newer CONCAT function can reference a range of cells. =CONCATENATE(A1,A2,A3,A4,A5) becomes =CONCAT(A1:A5)
Ok. I have tested this one:
Excel Formula:
=TODAY()+5-WEEKDAY(TODAY()+7,1)
I'm wondering, is there a possibility that your result and my result are showing different due to versions? :ROFLMAO: I noticed that the number you changed is quite straightforward but my result as below
Current date=TODAY()+5-WEEKDAY(TODAY()+7,1)
3/2/20232/2/2023
4/2/20232/2/2023
5/2/20239/2/2023
6/2/20239/2/2023
7/2/20239/2/2023
8/2/20239/2/2023
9/2/20239/2/2023
10/2/20239/2/2023
11/2/20239/2/2023
12/2/202316/2/2023
13/2/202316/2/2023

The result I'm expecting is

Current date4-days interval
13/2/202316/2/2023 (1)
14/2/202316/2/2023 (2)
15/2/202316/2/2023 (3)
16/2/202316/2/2023 (4)
17/2/202320/2/2023 (1)
18/2/202320/2/2023 (2)
19/2/202320/2/2023 (3)
20/2/202320/2/2023 (4)
21/2/202324/2/2023 (1)
 
Upvote 0
This will work only for the specified date sequence.
Excel Formula:
=TODAY()+3-MOD(TODAY()+2,4)
If you want something like this, then it must be a different formula:
Current date4-days interval
14/2/202316/2/2023 (1)
15/2/202316/2/2023 (2)
16/2/202316/2/2023 (3)
17/2/202316/2/2023 (4)
18/2/202320/2/2023 (1)
19/2/202320/2/2023 (2)
20/2/202320/2/2023 (3)
21/2/202320/2/2023 (4)
22/2/202324/2/2023 (1)
 
Upvote 0
This will work only for the specified date sequence.
Excel Formula:
=TODAY()+3-MOD(TODAY()+2,4)
If you want something like this, then it must be a different formula:
Current date4-days interval
14/2/202316/2/2023 (1)
15/2/202316/2/2023 (2)
16/2/202316/2/2023 (3)
17/2/202316/2/2023 (4)
18/2/202320/2/2023 (1)
19/2/202320/2/2023 (2)
20/2/202320/2/2023 (3)
21/2/202320/2/2023 (4)
22/2/202324/2/2023 (1)
OMG IT"S WORKING NOW!! THANK YOU SO MUCH. I didnt know you can use MOD like that, that's new to me.
 
Upvote 0
OMG IT"S WORKING NOW!! THANK YOU SO MUCH. I didnt know you can use MOD like that, that's new to me.
Yes, but as I told you, it depends on totally where you started first.

It will be a different story if you want something like this:
Current date4-days interval
14/2/202317/2/2023 (1)
15/2/202317/2/2023 (2)
16/2/202317/2/2023 (3)
17/2/202317/2/2023 (4)
18/2/202321/2/2023 (1)
19/2/202321/2/2023 (2)
20/2/202321/2/2023 (3)
21/2/202321/2/2023 (4)
22/2/202325/2/2023 (1)
=TODAY()+3-MOD(TODAY()+2,4) : 3 stands for how many days forward you want to start your squence.
=TODAY()+3-MOD(TODAY()+2,4) : 2 is the number that you have to adjust according to your desired starting date.
=TODAY()+3-MOD(TODAY()+2,4) : 4 is the interval that you want to skip to the next date.
 
Upvote 1

Forum statistics

Threads
1,214,848
Messages
6,121,917
Members
449,055
Latest member
KB13

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