Hi Poul,

On 6/1/2022 23:06 PM, Poul Jensen wrote:
> How can I remove the colons from the variable [MODUL_DATO_ISO], or get
> another date/time stamp that is acceptable.

What I use is @d10- for dates and @t04- for time. Check the help on
"Time Pictures"

But if you just need to remove the colons, then a few lines of code
should work:

I BYTE
L BYTE
CODE
L = LEN(MODUL_DATO_ISO)
LOOP I = 1 TO L
IF MODUL_DATO_ISO[I] = ':'
MODUL_DATO_ISO[I] = '-'
END

Best regards,



--
Arnor Baldvinsson
Icetips Alta LLC