Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a (probably) simple problem:
write:
Repeat('0', 10 - len(SAKNR)) & SAKNR as SAKNR
Hope it helps
Try with Num function
Num(SAKNR , '0000000000') AS SAKNR
Hope it helps
Hi,
Try like this
LOAD
Dim1,
Dim2,
Text(Repeat('0', 10 - len(SAKNR)) & SAKNR) as SAKNR
FROM DataSource;
Regards,
Jagan.
Num(example,'0000000000') as example
Hai Peter.
Try It This One
Num(SAKNR,'0000000000')
Thank you.
All of your solutions help me.
This is really a great community
Peter