Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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.?
Use the Money#() function.
For example,
Money#(Salary, $#,##0)
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
Hi!
or you can use purge() funciton too