Hi,
I wish to calculate a string type formula to a numerical value. The string data contains variable amount of numbers and plus and minus symbols like '+' and '-'.
I have the following expamle string data:
| Field1 | 51.6+31.2-12.1 |
| Field2 | 809.50 |
| Field3 | 297.1+5+0+123+34.5-22.3 |
| Field4 | 5505.00-100-5 |
And I want output as a numerical value:
| Field1 | 70.7 |
| Field2 | 809.5 |
| Field3 | 437.3 |
| Field4 | 5400 |