P
(PeteCresswell)
Right now, I'm doing this:
' ---------------------------------------------------------------
Global Const gDateInterval_Day As String = "d"
Global Const gDateInterval_Week As String = "ww"
Global Const gDateInterval_Month As String = "m"
Global Const gDateInterval_Quarter As String = "q"
Global Const gDateInterval_Year As String = "yyyy"
' ---------------------------------------------------------------
But it looks kind of lame in light of my suspicion that
VBA must have built-in constants for those values.
If it does, does anybody know the naming convention?
' ---------------------------------------------------------------
Global Const gDateInterval_Day As String = "d"
Global Const gDateInterval_Week As String = "ww"
Global Const gDateInterval_Month As String = "m"
Global Const gDateInterval_Quarter As String = "q"
Global Const gDateInterval_Year As String = "yyyy"
' ---------------------------------------------------------------
But it looks kind of lame in light of my suspicion that
VBA must have built-in constants for those values.
If it does, does anybody know the naming convention?