10-25-2010, 03:41 PM
Hi Blue,
The error was due to wrong syntax. you were using StrDatesValue(1) but the correct value should be StrDatesValues(1).
Hope it will run fine at your end too.
The error was due to wrong syntax. you were using StrDatesValue(1) but the correct value should be StrDatesValues(1).
Code:
' The old code is:
StrFinalDate = StrDatesValues(0)&StrDatesValue(1)&Right(StrDatesValues(2),2)
' Updated code is:
StrFinalDate = StrDatesValues(0)&StrDatesValues(1)&Right(StrDatesValues(2),2)
Hope it will run fine at your end too.