You're going to have to do something like this...there are surely other ways...this is one
date(val(replace('12/12/2008', "/","")[5 to 8]),val(replace('12/12/2008', "/","")[3 to 4]),val(replace('12/12/2008', "/","")[1 to 2]))
Make sense?
The replace statement removes the /'s giving us a string of numbers. This allows the val statement to be used.
As I said there are probably other ways...maybe some even easier...but this will work.
NOTE -- you could always perform the replace in a different formula and then use that formula here. Might be a little cleaner to the eye
-- Jason
"It's Just Ones and Zeros