Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
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