Hi I have a problem converting the figures from string type of data to number format type of data. Because if I only use the select tool and change the data type it will rounded off and caused error. I would like to change the amount figures from string to number type of data. See sample below:
| Amount | Data Type |
| 6,216,000.00 | V_String |
| 1,234 | V_String |
| -500,000.00 | V_String |
From the table above I would like to be transformed it into:
| Amount | Data Type |
| 6216000.00 | Double |
| 1234 | Double |
| -500000.00 | Double |
Please help me to solve this one. Thank you!