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

Remove Period from Field Value

Hi all,

I'm new to the Qlikview tool and currently working from datas extracted directly from the Oracle JDE database.

I would like to know is there a way to remove periods from field value.

Example:

Transform 50250.2041.503 to 502502041503

Thanks in advance!!

Best.

1 Solution

Accepted Solutions
maxgro
MVP
MVP

=replace( '50250.2041.503', '.', '')

or

=purgechar('50250.2041.503', '.')

View solution in original post

5 Replies
maxgro
MVP
MVP

=replace( '50250.2041.503', '.', '')

or

=purgechar('50250.2041.503', '.')

Not applicable
Author

Thanks Mássimo!

But I would like to know how can I apply it to the whole field.

Thank you, again.

Not applicable
Author

Same syntax:

LOAD

     REPLACE([FieldName],'.','') AS FieldName

MK_QSL
MVP
MVP

Try below in script

replace( YourFieldName, '.', '') as YourFieldName

 

or

purgechar(YourFieldName, '.') as YourFieldName

maxgro
MVP
MVP

same answer, just use the field

load

replace (field, '.', '') as newfield;

sql

select

'50250.2041.503' "field"

from dual;