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

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

How to handle currency column in Qlik sense.

Salary
$125.50
$63.46
$43.27
$29.85
$32.69
$32.69
$50.48

How to handle this type of column where i want to separate $ sign from it and only numeric value i need it.?

Labels (2)
3 Replies
Or
MVP
MVP

Aurelien_Martinez
Partner - Specialist II
Partner - Specialist II

Hi,

 

You can use replace()

 

Load
Replace(Salary, '$', '') as Salary2,
Salary
Inline [
Salary
$125.50
$63.46
$43.27
$29.85
$32.69
$32.69
$50.48
];

 

Aurélien

Help users find answers! Don't forget to mark a solution that worked for you!
QFabian
MVP
MVP

Hi!

or you can use purge() funciton too

 

QFabian