Access : จุดเริ่มต้นที่ง่ายที่สุดสำหรับการเรียนรู้ ระบบฐานข้อมูล Access : จุดเริ่มต้นที่ง่ายที่สุดสำหรับการเรียนรู้ การเขียนโปรแกรม Access : เป็นได้ทั้งตัวเก็บฐานข้อมูล และตัวจัดการฐานข้อมูล Thai Access : บอร์ดเสริมการเรียนรู้ Access ด้วยภาษาไทย
@ เขียนคำถามให้ผู้ตอบเข้าใจ จะช่วยให้ผู้ถามได้คำตอบที่ชัดเจนและรวดเร็ว / @ คุณได้คำตอบที่ต้องการแล้วหรือยัง? กลับมาอีกสักครั้งเพื่อแจ้งผู้ตอบ.
0 สมาชิก และ 1 บุคคลทั่วไป กำลังดูหัวข้อนี้
Public Function WorkingDays(StartDate As Date, EndDate As Date) As IntegerOn Error GoTo Err_WorkingDaysDim intCount As Integer intCount = 0 If Weekday(StartDate) = 1 Then intCount = intCount + 1 End If Do While StartDate <= EndDate Select Case Weekday(StartDate) Case Is = 1, 7 intCount = intCount Case Is = 2, 3, 4, 5, 6 intCount = intCount + 1 End Select StartDate = StartDate + 1 If Weekday(EndDate) = 1 Then If EndDate > StartDate Then intCount = intCount + 1 End If End If Loop WorkingDays = intCountExit_WorkingDays: Exit FunctionErr_WorkingDays: MsgBox Err.Description Resume Exit_WorkingDaysEnd Function