@Ksharp
I've interpreted the comma as thousand separator so the value should become 25000
In case the comma is the decimal separator then the function reading the amount would need to look like:
currency_amt=input(compress(amount_string,',','kd'),commax32.);
....and I would need to see a string with actual decimals to come up with the final function suitable for the string pattern at hand.
In my country of origin the value would be written: 25'000,00
... View more