Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Is there a function that controls the size of a cell? I am trying to make a spreadsheet form in VB but the cells are too small for the values I'm entering. Also I'm trying to increment the cell positions after the spreadsheet is opened, so how would I find the last entry in a column then increment it one larger than it's previous? -- jimbo_jones ------------------------------------------------------------------------ jimbo_jones's Profile: http://www.excelforum.com/member.php...o&userid=27244 View this thread: http://www.excelforum.com/showthread...hreadid=469273 |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Record a macro when you do:
format|column|autofit selection and you'll see the code: maybe something like: range("a1").entirecolumn.autofit or when you're done with almost everything... worksheets("sheet1").usedrange.columns.autofit And to get the next row in column A. dim NextRow as long with worksheets("sheet1") nextrow = .cells(.rows.count,"A").end(xlup).row + 1 end with jimbo_jones wrote: Is there a function that controls the size of a cell? I am trying to make a spreadsheet form in VB but the cells are too small for the values I'm entering. Also I'm trying to increment the cell positions after the spreadsheet is opened, so how would I find the last entry in a column then increment it one larger than it's previous? -- jimbo_jones ------------------------------------------------------------------------ jimbo_jones's Profile: http://www.excelforum.com/member.php...o&userid=27244 View this thread: http://www.excelforum.com/showthread...hreadid=469273 -- Dave Peterson |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Thanks Dave! Could you suggest a tutorial or link where I can learn Excel VB at this level? Thanks -- jimbo_jones ------------------------------------------------------------------------ jimbo_jones's Profile: http://www.excelforum.com/member.php...o&userid=27244 View this thread: http://www.excelforum.com/showthread...hreadid=469273 |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
There's always books.
Debra Dalgleish has a list at her site: http://www.contextures.com/xlbooks.html John Walkenbach's is a nice one to start with. See if you can find them in your local bookstore and you can choose what one you like best. jimbo_jones wrote: Thanks Dave! Could you suggest a tutorial or link where I can learn Excel VB at this level? Thanks -- jimbo_jones ------------------------------------------------------------------------ jimbo_jones's Profile: http://www.excelforum.com/member.php...o&userid=27244 View this thread: http://www.excelforum.com/showthread...hreadid=469273 -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Increment and replace a cell value | Excel Discussion (Misc queries) | |||
what is the formula to find increment ? | Excel Discussion (Misc queries) | |||
Increment cell reference | Excel Discussion (Misc queries) | |||
Cell size? Or size limit for Text data type? | Excel Discussion (Misc queries) | |||
How to find out the size of a variable-size array ? | Excel Programming |