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

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
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

Labels (1)
1 Solution

Accepted Solutions
swuehl
Champion III
Champion III

Maybe like

Trim( Purgechar(Name,'.'))

View solution in original post

4 Replies
swuehl
Champion III
Champion III

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,'.',''))