I use some strings in a formula.
These strings can be "19.23" or "19,23".
I need the numbers to use in my formula.
I can use val() or Cdbl() but i have the problem
val(19.23) -> 19,23
val(19,23) -> 19
Cdbl(19.23) -> 1923
Cdbl(19,23) -> 19,23
With a . i have to use val() and with a , i have to use
Cdbl().
Is there something that recognize both?

Thanks