How to tell first mon, tue,wed etc

peterwillmo

New Member
Joined
May 23, 2010
Messages
27
I have an MS Excel (Version 2003 sp3) spreadsheet with approx 1500 rows of data all with date and day entered. I need to add an entry showing wether a particular date is the first, second, third, fourth or fifth monday, tuesday, wednesday, thursday, friday, saturday or sunday of that month. Would appreciate help on this.
Thank you
Peter
 

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
With a date in A1, this formula will return a result such as "3 Tuesday" for Tuesday 15th March 2011.

Code:
=ROUNDUP((A1-DATE(YEAR(A1),MONTH(A1),1)+1)/7,0)&" "&TEXT(A1,"DDDD")

Edit to add - Jonmo1's solution is similar but neater than mine.
 
Upvote 0

Forum statistics

Threads
1,224,574
Messages
6,179,629
Members
452,933
Latest member
patv

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