I have a nvarchar column with a list of entries such as (including NULLs)-
-1.00000
0.000000
0.010000
0.100000
0.500000
00000000
1.000000
1.500000
10.00000
10.50000
100.0000
1000.000
1001.000
1006.000
NULL
NULL
I want to convert this to a numeric field so that I can use this field to do some calculations. However, I get the following error message-
Error converting data type nvarchar to float.
Can someone please help?