Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

how many Fridays in a specific month in Excel

3 views
Skip to first unread message

Ray@discussions.microsoft.com Don Ray

unread,
Jan 8, 2006, 7:46:02 PM1/8/06
to
I need to be able to produce a number represneting the amount of times a
specific day occurs in any given month. Thanks fo any help in advance

Ron Coderre

unread,
Jan 8, 2006, 8:12:01 PM1/8/06
to
Try this:
A1: (Enter Any Date)
B1: (Enter a number from 1 to 7)
Note: 1=Sun, 2=Mon, 3=Tue, etc....7=Sat

C1: =SUMPRODUCT(--(WEEKDAY(A1-1+ROW($A$1:INDEX(A:A,DAY(EOMONTH(A1,0)))))=B1))
That formula returns the count of days of the type referenced in B1 there
are in the month including the value in A1.

Example:
A1: 2/1/2006
B1: 2 (Monday)
C1: returns 4

Is that what you're looking for?

***********
Regards,
Ron

XL2002, WinXP-Pro

Ron Rosenfeld

unread,
Jan 8, 2006, 10:41:12 PM1/8/06
to


With some date in the month in A1:

=4+(DAY(A1-DAY(A1)+1-WEEKDAY(A1-DAY(A1+5))+35)>7)

will give the number of Fridays in a month.

For a different weekday, change the '5' near the end accordingly:

1:Monday 7:Sunday


--ron

0 new messages