Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Trimm full stop

Hi All,

How to trim full stop .

Name:

Raja .

Raja

Michel .

Michel

Thanks,

Krishna

1 Solution

Accepted Solutions
swuehl
MVP
MVP

Maybe like

Trim( Purgechar(Name,'.'))

View solution in original post

4 Replies
swuehl
MVP
MVP

Maybe like

Trim( Purgechar(Name,'.'))

trdandamudi
Master II
Master II

May be as below:

Name_Table:

Load * Inline [

Name

Raja .

Raja

Michel .

Michel

];

NoConcatenate

Final:

Load

SubField(Name,' .',1) as Name

Resident Name_Table;

Drop Table Name_Table;

trdandamudi
Master II
Master II

One more way with preceding load:

Name_Table:

Load SubField(Name,' .',1) as Name;

Load * Inline [

Name

Raja .

Raja

Michel .

Michel

];

tamilarasu
Champion
Champion

You can also try,

Trim(Replace(Name,'.',''))