Easy Newbie Question

MazPower

New Member
Joined
Apr 8, 2002
Messages
5
first the names
excel workbook = project(4)
sheet with dialog box = DiaQuart
in sheet diaquart there's my textbox= Date
answer should go to same workbook,
sheet= rapport, cell=D3
---------------------------------
my question
please answer step by step because i am ery good in excel but looks like i cant understand nothing from vba even the dumbest
line of code!!

ok i've made a dialog box, i have a lot of textbox that the user has to fill in with his info. i want these info to be copied to a specific cell in my worksheet(rapport(D3))
when the user press the ok button.

should be easy to answer isint it?
cant figure it out!!

Thanks
MAZ
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
Private Sub CommandButton1_Click()
Worksheets("Rapport").Range("d3") = Worksheets("Diaquart").TextBox1.Text
End Sub
 
Upvote 0
anayone can send me an simple example
of how to copy the data from a textbox in a msgbox to a worksheet so i can compare the code
thanks
maz
 
Upvote 0

Forum statistics

Threads
1,214,631
Messages
6,120,640
Members
448,974
Latest member
DumbFinanceBro

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