Divide numbers

Hi i want to divide 8873,5(row0) and 2241,6( row1) result 3,9585 that is(row1/row0) but ı want to 3,9 can u help me please?

And other question 2.590.000 ı want to divide 1000 how can do this?

Hi,

How about the following expression?

Math.Floor(doubleValue*10)/10

And other question 2.590.000 ı want to divide 1000 how can do this?

Double.Parse(yourString,System.Globalization.NumberStyles.AllowThousands, New System.Globalization.CultureInfo("es-ES"))/1000

Regards,