Decimales con textbox
Help!
No entiendo porque excel me falla en esto, les pondré parte del código para poder explicar
tb9 = Sheets("Productos"). Cells(1 + i, 4). Value
TextBox9.Value = tb9
tb11 = Sheets("Productos").Cells(1 + i, 5).Value
TextBox11.Value = tb11
tb10 = tb11 / tb9
TextBox10.Value = Val(tb10)
Poniendole valores:
tb9 = 321
tb11 = 578
tb10 = 1.8006
TextBox10.Value = 1,8006 ???????Porque???????
Y si luego le intento dar formato con la siguiente instruccion
TextBox10.Value = Format(TextBox10.Value, "#,##0.00")
Me aparece 18,006.00
Necesito que TextBox10 valga 1.8006
¿Qué tengo que hacer?
No entiendo porque excel me falla en esto, les pondré parte del código para poder explicar
tb9 = Sheets("Productos"). Cells(1 + i, 4). Value
TextBox9.Value = tb9
tb11 = Sheets("Productos").Cells(1 + i, 5).Value
TextBox11.Value = tb11
tb10 = tb11 / tb9
TextBox10.Value = Val(tb10)
Poniendole valores:
tb9 = 321
tb11 = 578
tb10 = 1.8006
TextBox10.Value = 1,8006 ???????Porque???????
Y si luego le intento dar formato con la siguiente instruccion
TextBox10.Value = Format(TextBox10.Value, "#,##0.00")
Me aparece 18,006.00
Necesito que TextBox10 valga 1.8006
¿Qué tengo que hacer?
Respuesta de jerryeagle
1