ClaraBarton
Registered User.
- Local time
- Today, 00:52
- Joined
- Oct 14, 2019
- Messages
- 623
I cannot get these two formulae strings to compile
I've used both formulae in a query but when I try to write them in a vba string they don't work. So I broke them into string variables and they still don't work.
Code:
Dim moName As String
moName = "Choose(Month([WhatDate]),'January','February','March','April', " & _
'May','June','July','August','September','October','November','December')"
Dim daName As String
daNsme = "Choose(Weekday([WhatDate]),"Sun","Mon","Tues","Wed","Thurs","Fri","Sat")"