Hello,
Assuming the year (2004) in A1 and the month (1=> Jan, ..., 12 => Dec) in A2:
The number of Fridays:
=4+(DAY(DATE(A1,A2,35))<WEEKDAY(DATE(A1,A2,2)))
Assuming ANY date of a month in A1, number of Fridays of same month is:
=4+(DAY(A1-DAY(A1)+35)<WEEKDAY(A1-DAY(A1)-5))
Assuming the date in A1 is always the first of the month (as in Peo's example):
=4+(DAY(A1+34)<WEEKDAY(A1-6))
Regards,
Daniel M.