Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hey.. kinda noob question here.
I'm creating a custom box where the user click it to enter data, for pops up, he enters the data and its inputed into a worksheet in th same workbook. The box and the input are fine, I think Ive got th capture down as well, however inputing into the date base, and the moving a new entry into the next row is where I become a littl confused. I'm thinking I've got each input to a variable? that right if so how does this input to a specified cell? Any help on this would be great. Oh also.... depending on the answer of the first input(probably a dro down) determines the worksheet to be placed. Thanks, Jara -- Message posted from http://www.ExcelForum.com |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
The next free row can be found with
cNextFree = Worksheets("Sheet1").Cells(Rows.Count,"A").End(xlU p).Row+1 and you can use this for input with Worksheets("Sheet1").Cells(cNextFree,"A").Value = .... -- HTH Bob Phillips ... looking out across Poole Harbour to the Purbecks (remove nothere from the email address if mailing direct) "Jsmith1181 " wrote in message ... Hey.. kinda noob question here. I'm creating a custom box where the user click it to enter data, form pops up, he enters the data and its inputed into a worksheet in the same workbook. The box and the input are fine, I think Ive got the capture down as well, however inputing into the date base, and then moving a new entry into the next row is where I become a little confused. I'm thinking I've got each input to a variable? that right? if so how does this input to a specified cell? Any help on this would be great. Oh also.... depending on the answer of the first input(probably a drop down) determines the worksheet to be placed. Thanks, Jarad --- Message posted from http://www.ExcelForum.com/ |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
I want excel to input data in a cell from multiple cell choices | Excel Worksheet Functions | |||
Adding up within a cell during data input | Excel Discussion (Misc queries) | |||
data input into cell a1 drives c1 data gathered from a list | Charts and Charting in Excel | |||
refilling data in same cell after user input in another cell | Excel Discussion (Misc queries) | |||
Data input to one cell? | New Users to Excel |