assigning text box input to a sheet

R

rlashmore999

I've got these problems::

a cmdButton on a userform should read 3 text boxes
and assign the data on one row across three columns
but I get it to do things like input into col a row1 then
b2 then c3
and worse
it should go a5 b5 c5 with existing data in a2-4 b2-4 c2-4

whn I input data data into text boxes what are the assgnments

for a start date and end date

do I dim them as strings and format them or dim them and Date and do
some other loopy assignment



I want one text box to input todays date from a text box into cell
"E2"...how do I do that ?????


any help is greatly appreciated

I should have said thanks b for the other helpo I've received
 
C

Corey

I want one text box to input todays date from a text box into cell
"E2"...how do I do that ?????

sheet1.range("E2").value = textbox1.value ' <== Modify Sheet & Textbox Number to suit.


I've got these problems::

a cmdButton on a userform should read 3 text boxes
and assign the data on one row across three columns
but I get it to do things like input into col a row1 then
b2 then c3
and worse
it should go a5 b5 c5 with existing data in a2-4 b2-4 c2-4

whn I input data data into text boxes what are the assgnments

for a start date and end date

do I dim them as strings and format them or dim them and Date and do
some other loopy assignment



I want one text box to input todays date from a text box into cell
"E2"...how do I do that ?????


any help is greatly appreciated

I should have said thanks b for the other helpo I've received
 

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