If you have Analysis ToolPak installed & activated:btw i found # of days in specific month(O2) by using this formula.
Code:=DAY(DATE(YEAR(O2),MONTH(O2)+1,1)-1)
If you have start date in A1 and end date in B1 this formula will give you a count of Mondays between those two dates (inclusive)
=INT((WEEKDAY(A1-5)+B1-A1)/7)
change the 2 to get other days (1=Sun through to 7 = Sat)
.....i only have one date and that's located on O2 and i have to find # of Thursdays in given month btw O2 date is always 1st of each month.