Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
rathnam_qv
Creator
Creator

functions


Hi all,

i hv ABC field which has values like  0001.00,0002.00

but i want to remove decimal from that number like 000100,000200

can any one help

Thanks in advance!!!!

Smiley

2 Replies
tresesco
MVP
MVP

Use PurgeChar() like:

=PurgeChar('0001.00,0002.00', '.')

Or,

Load

              PurgeChar(YourField, '.') as NewField   

Not applicable

Try This

Replace(fieldname,'.','') as Fieldname

if you need any thing more please find the attachment