L
LG
I tried this the other day and it worked today i brought in another table and
I am getting incorrect data.
The original was 20080229
I tried this
FixDate: DateSerial(Left([submted],4),Mid([submted],5,2),Right([submted],2))
and I got 05/08/2022
Than I tried
FixDate:
IIf(IsDate(Format([submted],"@@@@-@@-@@")),CDate(Format([submted],"@@@@-@@-@@")),Null)
and I got 08/20/229
The result I am looking for is 02/29/2008
Thanks
I am getting incorrect data.
The original was 20080229
I tried this
FixDate: DateSerial(Left([submted],4),Mid([submted],5,2),Right([submted],2))
and I got 05/08/2022
Than I tried
FixDate:
IIf(IsDate(Format([submted],"@@@@-@@-@@")),CDate(Format([submted],"@@@@-@@-@@")),Null)
and I got 08/20/229
The result I am looking for is 02/29/2008
Thanks