If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > PC based Database Applications > Microsoft Excel > Use NEXT empty cell in excel

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 10-12-04, 08:21
Harrij Harrij is offline
Registered User
 
Join Date: Oct 2004
Posts: 3
Cool Use NEXT empty cell in excel

How do i get to automaticly have VB put the copied cell of a worksheet in the next available EMPTY cell in another workbook ??
Reply With Quote
  #2 (permalink)  
Old 10-13-04, 05:47
n00bl0rd n00bl0rd is offline
Registered User
 
Join Date: Oct 2004
Posts: 8
in the next available row?

Code:
intNextCell = Sheet1.UsedRange.Rows.Count + 1

Sheet1.Cells(intNextCell, col) = value

Last edited by n00bl0rd; 10-13-04 at 05:49.
Reply With Quote
  #3 (permalink)  
Old 10-14-04, 16:58
Harrij Harrij is offline
Registered User
 
Join Date: Oct 2004
Posts: 3
Exclamation next empty cell in same row !

I want to send a fixed cell (-value) from one worksheet to another worksheet
on a different HD and place the value in one row. It needs to fill the next empty cell with new data everytime ( downwards ) !!

The application needs to start at 23:55 and close itself at 23:59.
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

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