Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
strDay = DayOfWeek(Date)
'@------------------------------------------------------@
Function DayOfWeek(ByVal datDate As Date) As String
Dim strDay As String
Select Case Weekday(datDate)
Case 1
strDay = "Sunday"
Case 2
strDay = "Monday"
Case 3
strDay = "Tuesday"
Case 4
strDay = "Wednesday"
Case 5
strDay = "Thursday"
Case 6
strDay = "Friday"
Case 7
strDay = "Saturday"
End Select
DayOfWeek = strDay
End Function
"SELECT Format([Invoices].[DatePaid], 'dddd') As WeekDay, [Customers].[CustName] FROM Customers INNER JOIN Invoices ON [Customers].[CustID]=[Invoices].[CustID] GROUP BY Format([Invoices].[DatePaid], 'dddd'), [Customers].[CustName];"