when i do
select cast('2,2' as float)
replace('2,2' , ',' , '.' ) is needed before casting
i have the following error " Error converting data type varchar to float." because there is the comma.
when i do
select cast('2.2' as float)
the result is "2,2" with a comma
i am a bit lost with that since i integrate excel files with french formatted numbers: commas "," instead of "." so i have tons of theses errors
thankss!