计算一个月有几天并且有几个周六日的小函数

'计算一个月有几天
'参数:fYM 格式 YYYYMM
Function MonthDay(fYM)
 t_Date = DateAdd("m",1,Left(fYM,4)&"-"&Right(fYM,2)&"-1")
 MonthDay = Day(DateAdd("d",-1,t_Date))
End Function
'计算一个月有几个周六周日
'参数:fDate 格式 YYYYMM
Function WeekSum(fDate)
 t_Day = MonthDay(fDate)
 t_NDate = Left(fDate,4)&"-"&Right(fDate,2)&"-"
 t_Sum = 0
 For i = 1 To t_Day
  If Weekday(t_NDate&i) = 1 Or Weekday(t_NDate&i) = 7 Then
   t_Sum = t_Sum + 1
  End If
 Next
 WeekSum = t_Sum
End Function 

你可能感兴趣的:(Date,function)