Code for adding datas into an excel sheet from an user form

P

PraveenEXCEL

can some one help me to get Code for adding datas into an excel shee
from an user for
 
I

isabelle

hi,

With ThisWorkbook
..Sheets("Sheet1").Range("A1") = "x"
End With

'or

With ThisWorkbook
..Sheets("Sheet1").Range("A1") = Me.TextBox1
End With

isabelle

Le 2013-12-21 07:15, PraveenEXCEL a écrit :
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top