Substr("string",0,4)+"-"+Substr("string",5,2)+"-"+Substr("string",7,2)
Hi Freek,
I used your solution, I only changed 5 with 4 and 7 with 6:
Substr("YYYYMMDD",0,4) + "-" + Substr("YYYYMMDD",4,2) + "-" + Substr("YYYYMMDD",6,2)
thanks