Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have Employee ID like '0012345677' , it has leading zeroes in it. When I export it to Excel its fine but exporting as a CSV looses the leading 0's. I need the leading 0's when exporting to CSV. (QV 12))
Have already tried num(exployee ID, '0000000000')
Any suggestions
hello
and what about using text() function ?
how does Txt function work
Text() forces the expression to be treated as text, even if a numeric interpretation is possible.
Text (expr)
Doesnt work, still dropping out the leading 0's
this link might be helpful:
try this
text(num(your column,'0000000'))
adjust the format according to your needs