JDE Time
VITOPIEPOLI
Forums
Hi I have a JDE 6 digits time field li 183005. It should be 18:30:05.
Is there a function to convert it?
Thanks
Hi I have a JDE 6 digits time field li 183005. It should be 18:30:05.
Is there a function to convert it?
Thanks
Is this a text or numeric
@left(@Str(183005, 6, 0), 2) + ":" + @mid(@Str(183005, 6, 0), 3, 2) + ":" + @right(@Str(183005, 6, 0), 2)
I think that should work but I haven't actually tested it so it might need a bit of an adjustment.