Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

removing the comma in qlikview

Hi All ,

i Have  an text format Like the  "nam , gpa , 11 "

i want to Remove the commas  convert that text format into normal form Like            nam pga 11 

14 Replies
sunny_talwar

May be this:

PurgeChar(FieldName, ',')


Capture.PNG

marcus_sommer

Try: Replace(Field, ', ', '')

- Marcus

Chanty4u
MVP
MVP

use purgchar(name,',')

or

   Subfield( Mid( MyField, Len(MyField) ), ',' )

Not applicable
Author

I want to Remove the Double Quotes also  ... this one   " " 

sunny_talwar

Try this:

PurgeChar(FieldName, Chr(34) & ',')

Not applicable
Author

give one Example     

sunny_talwar

Here is one:

Table:

LOAD Field,

  PurgeChar(Field, Chr(34)&',') as NewField;

LOAD * Inline [

Field

'"nam , gpa , 11 "'

];

Capture.PNG

avinashelite

if you want to remove both the " &,

purgechar(' "nam , gpa , 11" ','," ')

Kushal_Chawda

try this one also

keepchar(Fieldname,'abcdefghijklmnopqrstuvwxyz0123456789') as NewField