Currently, I'm doing a simple OutputTo statement in VBA to export query results to an Excel file and I'm appending today's date to the output file name.
Private Sub Command1_Click()
Dim TodaysDate As String
TodaysDate = Format(DateSerial(Year(Date), Month(Date), Day(Date))...