Ayudita con valores provenientes de formulario

Lucali

New Member
Joined
Apr 29, 2004
Messages
6
Please necesito ayuda...hice un formulario en visualexcel, desde el cual, ingreso datos para agregar en una hoja. El formulario, lo que hace es antes de agregar ningun dato, inserta una fila y en esa fila nueva coloca los datos que ingreso en el formulario.
El problema lo tengo, en los textbox que ingreso numeros (por ejemplo, costos, precio de venta etc). Cuando el valor lo transfiere a la hoja de excel, lo hace en modo texto y no encuentro la manera de que lo haga en formato de numero.... :-(

Muchas gracias y disculpen las molestias..
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
Suponiendo que «visualexcel» quiere decir Excel VBA y no refiere a otro programa. Y que su formulario es un UserForm...

<font face=Courier New><SPAN style="color:#00007F">Private</SPAN> <SPAN style="color:#00007F">Sub</SPAN> CommandButton1_Click()
    <SPAN style="color:#007F00">' Si usa CCur() sale formateado como Currency</SPAN>
    Range("A1").Value = <SPAN style="color:#00007F">CCur</SPAN>(Me.TextBox1)
    <SPAN style="color:#007F00">' Si usa CDbl() sale como un número cualquier</SPAN>
    Range("A2").Value = <SPAN style="color:#00007F">CDbl</SPAN>(Me.TextBox2)
    Me.Hide
<SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">Sub</SPAN>
</FONT>

HTH
 
Upvote 0
:-P mil gracias!
No me sirvio el codigo que me pasaste pero me sirvio de referencia...todos los dias se aprende algo nuevo je!
Perdon por mi poca tecnica en el vocabulario del mensaje anterior, pasa que como estoy acostumbrada a estar con usuario un poco....duros, transformo las palabras para que me entiendan y se me pega a todos los ambitos jajaja.
Te paso lo que me sirvio

Range("g6").Select
ActiveCell.FormulaR1C1 = TextBox7
Range("g6").Value = Val(Me.TextBox7)

Gracias de nuevo!
Lu
 
Upvote 0

Forum statistics

Threads
1,223,948
Messages
6,175,575
Members
452,652
Latest member
eduedu

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top