from my query, when i export a date using
Expr1:Format([Subm_Date],"yyyymmdd")
into a csv text file and my date is, for example, 01/01/2001 (January 1st, 2001), the value appearing in my output file is
"20010101"
WITH quotations (as show above) surrounding it.
the thing is, i don't want the quotations around the quantity being exported; i would want to see it exported as
in the resulting csv text file
20010101
[note there are no quotations above].
so i am pulling my hair out trying to convince ms a2k to behave itself and output my dates as just shown.
having not much luck, i came up with the idea that if i could find a string function to remove the two occurences of the quotations from "20010101" my problem'd be licked. the thing is that my reference sources aren't turning up very many string functions (assuming that this is way to go in the first place). i have tried using the "Val" function i think it was called, to convert the string to numerical, BUT (very weird) in the above instance it returns 200111 (omitting the leading zeroes from the month and day's values)
anyone listening?
“The philosophy of the school room in one generation will be the philosophy of government in the next." --- Abraham Lincoln
Expr1:Format([Subm_Date],"yyyymmdd")
into a csv text file and my date is, for example, 01/01/2001 (January 1st, 2001), the value appearing in my output file is
"20010101"
WITH quotations (as show above) surrounding it.
the thing is, i don't want the quotations around the quantity being exported; i would want to see it exported as
in the resulting csv text file
20010101
[note there are no quotations above].
so i am pulling my hair out trying to convince ms a2k to behave itself and output my dates as just shown.
having not much luck, i came up with the idea that if i could find a string function to remove the two occurences of the quotations from "20010101" my problem'd be licked. the thing is that my reference sources aren't turning up very many string functions (assuming that this is way to go in the first place). i have tried using the "Val" function i think it was called, to convert the string to numerical, BUT (very weird) in the above instance it returns 200111 (omitting the leading zeroes from the month and day's values)
anyone listening?
“The philosophy of the school room in one generation will be the philosophy of government in the next." --- Abraham Lincoln