Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 63
Default First empty cell

I have what I hope to be a simple question. 2 parts - I have a userform with
a textbox and a button , when the user hits commandbutton 1 I would like the
text they've written to automaticaly goto the first emty cell in sheet
'Tasks' Column B. Then automaticaly close that userform and launch userform
'choose date'. I was just going to unload form, and show.choosedate. Is
that correct?

Thank you to anyone that helps.
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 73
Default First empty cell

On Mar 22, 1:53 pm, Benz wrote:
I have what I hope to be a simple question. 2 parts - I have a userform with
a textbox and a button , when the user hits commandbutton 1 I would like the
text they've written to automaticaly goto the first emty cell in sheet
'Tasks' Column B. Then automaticaly close that userform and launch userform
'choose date'. I was just going to unload form, and show.choosedate. Is
that correct?

Thank you to anyone that helps.


On the click event for commandbutton1, use the hierarchy notation to
get the information to the spreadsheet. For example, in the click
event you could code something like the following:

Dim counter

counter = Range("B1").CurrentRegion.Rows.Count

Range("B" & counter + 1).Value = userForm1.TextBox.Value

userForm1.Hide
userForm2.Show

'code for userForm2
'and use Unload userForm# to clear it from system memory

Matt

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
When is a cell empty and how do I empty it. C Brandt Excel Discussion (Misc queries) 5 August 13th 07 05:37 PM
Leaving an empty cell empty GRL Excel Discussion (Misc queries) 4 April 22nd 06 05:47 PM
why a reference to an empty cell is not considered empty Nicoscot Excel Discussion (Misc queries) 10 March 10th 06 05:36 AM
Finding next empty empty cell in a range of columns UncleBun Excel Programming 1 January 13th 06 11:22 PM
Empty cell and a the empty String JE McGimpsey Excel Programming 0 September 13th 04 04:12 PM


All times are GMT +1. The time now is 03:19 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"