Recurrence Calendar excel

teireii

New Member
Joined
Nov 28, 2012
Messages
5
Hi experts,

would like to ask for your favour to create a calender showing recurrence event in monthly basis. i've created the template but i don't know how i can change the formula in tab "Calendar" to show the recurrence.

for example,
Sports - swimming class, i want to show the same item in every Sat in Calendar until 12/31/2018

School - Quiz, i want to show the same item in 17th of every month util 12/31/2018
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
Hi ,

Without your data layout , it is difficult to post a formula which will do what you want.

For your first requirement , you can use either the TEXT function or the WEEKDAY function to check for Saturdays.

=TEXT(date , "ddd") will return any of Mon , Tue , Wed ,..., Sat , Sun.

So you can check for :

=IF(TEXT(date , "ddd") = "Sat" ,... ,...)

The WEEKDAY function returns a value from 1 through 7 or 0 through 6 depending on a parameter ; by default , the return value is from 1 to 7 , where 1 is SUNDAY and 7 is SATURDAY.

Thus , using this function , your IF statement would be :

=IF(WEEKDAY(date) = 7 ,... ,...)

For your second requirement , you can use the DAY function to check for whether it is the 17th of any month ; the IF statement would be :

=IF(DAY(date) = 17 ,... ,...)
 
Upvote 0
Hi ,

You have formulae everywhere in the template ; where exactly do you want this particular formula to go ?

Mention the tab name and the cell / column / row references.
 
Upvote 0

Forum statistics

Threads
1,215,575
Messages
6,125,628
Members
449,240
Latest member
lynnfromHGT

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