Quote:

I'd like to capture just the numbers from @DATE. In other words, rather than 2004/03/26, return 20040326. Can I feed the string returned by @DATE into a function that strips out the "/" ?

Thanks




easy...

? join(split(@date,"/"),"")