G Guest Sep 7, 2004 #1 I would like to store months only and convert them into texts in my report. Thank you
S Steve Sep 7, 2004 #2 The code below uses the DateSerial function to get the relevant Month. Dim Mth As String Dim inMonth As Integer intmonth = 1 Mth = Format(DateSerial(0, intmonth, 1), "mmmm") Hope this helps, Steve.
The code below uses the DateSerial function to get the relevant Month. Dim Mth As String Dim inMonth As Integer intmonth = 1 Mth = Format(DateSerial(0, intmonth, 1), "mmmm") Hope this helps, Steve.
G Guest Sep 7, 2004 #4 Thanks Steve. -----Original Message----- The code below uses the DateSerial function to get the relevant Month. Dim Mth As String Dim inMonth As Integer intmonth = 1 Mth = Format(DateSerial(0, intmonth, 1), "mmmm") Hope this helps, Steve. . Click to expand...
Thanks Steve. -----Original Message----- The code below uses the DateSerial function to get the relevant Month. Dim Mth As String Dim inMonth As Integer intmonth = 1 Mth = Format(DateSerial(0, intmonth, 1), "mmmm") Hope this helps, Steve. . Click to expand...