I have a column in a dataset that looks like this :
- Actual
- chr
- 5.25%
- -5.50*1000000000
- 0.24%
- -4.00*1000
- 4.5%
My goal is to access it and automatically convert the cells that have *1000 or *1000000000 and make the calculation, ex -5.5 * 1000000000 should be - 5 500 000 000 on the cell and -4 * 1000 should be -4000.
Does anyone have a hint how to do this?
Best regards