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 > Extend total # of rows in excel?

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 03-11-04, 16:19
tjarvas tjarvas is offline
Registered User
 
Join Date: Mar 2004
Posts: 361
Extend total # of rows in excel?

Is it possible to extend the number of rows a spreadsheet has? I have a table that needs 115000 rows. I copy and pasted 65505 rows and that seemed to be the end. Does anyone have a clue how to do that?

Thanks.
Reply With Quote
  #2 (permalink)  
Old 03-11-04, 16:48
shades shades is offline
Registered User
 
Join Date: Oct 2003
Posts: 1,091
Not possible. About the only option is to paste into two or more spreadsheets. But the 65536 limit will not change.
__________________
old, slow, and confused
but at least I'm inconsistent!

Rich
(retired Excel 2003 user, 3/28/2008)

How to ask a question on forums
Reply With Quote
  #3 (permalink)  
Old 03-11-04, 17:05
tjarvas tjarvas is offline
Registered User
 
Join Date: Mar 2004
Posts: 361
is it possible to write a vlookup to search two different worksheets?
Reply With Quote
  #4 (permalink)  
Old 03-11-04, 18:24
Smitty Smitty is offline
Registered User
 
Join Date: Dec 2003
Location: San Diego, CA
Posts: 153
Quote:
is it possible to write a vlookup to search two different worksheets?
Yes.

You can use nested IF statements to test for certain criteria or perform equations on them. i.e. =IF(A1=X,VLOOKUP1(),VLOOKUP2()) & =VLOOKUP1()*VLOOKUP2()/VLOOKUP3().

Hope that helps,

Smitty

EDIT: As for your first question, if you've got that much data you might consider using Access.
Reply With Quote
  #5 (permalink)  
Old 03-11-04, 18:33
tjarvas tjarvas is offline
Registered User
 
Join Date: Mar 2004
Posts: 361
Well here is my problem know. I have a worksheet with 6 columns. I need to get data out of the A column and the D column. I have written two different vlookup functions for that. Read as follows

=VLOOKUP(W129,Color!D:F,3,FALSE)
=VLOOKUP(W12,Color!A:C,3,FALSE)

Some of the values are in Column A and some are in Column D. So is there a way to write a function that merges these? It would save me a lot of work if I could drag the formula through all of my numbers instead of having to go through each one.

Thanks
Reply With Quote
  #6 (permalink)  
Old 03-11-04, 18:39
Smitty Smitty is offline
Registered User
 
Join Date: Dec 2003
Location: San Diego, CA
Posts: 153
Are you pulling numbers or text?

If you're trying to concatenate the information you can use:

=VLOOKUP(W129,Color!D:F,3,FALSE)&" "&VLOOKUP(W12,Color!A:C,3,FALSE) - Will return both matches with a space in between

or

=VLOOKUP(W129,Color!D:F,3,FALSE)&VLOOKUP(W12,Color !A:C,3,FALSE) - No space

Note that there's no error handling in there, so if you have blank information in either table, you'll need to add some. You can use IF(ISNA or use a range qualifier. i.e. =IF(SearchRange="","",VLOOKUP1())

HTH,

Smitty
Reply With Quote
  #7 (permalink)  
Old 03-11-04, 18:49
tjarvas tjarvas is offline
Registered User
 
Join Date: Mar 2004
Posts: 361
I tried both of them and both returned the dreaded #N/A?

So here is what I typed in for the 4515 row in my sheet

=VLOOKUP(W4315,Color!D:F,3,FALSE)&VLOOKUP(W4315,Co lor!A:C,3,FALSE)

Any clue?
Reply With Quote
  #8 (permalink)  
Old 03-11-04, 18:51
tjarvas tjarvas is offline
Registered User
 
Join Date: Mar 2004
Posts: 361
Now I get the #Value error.

my kingdom for an answer!
Reply With Quote
  #9 (permalink)  
Old 03-11-04, 22:17
Smitty Smitty is offline
Registered User
 
Join Date: Dec 2003
Location: San Diego, CA
Posts: 153
Post an example of your sheets and I/we'll take a look.

Smitty

P.S. In the future it helps to keep relevant topics in the same post - that way everyone can follow along with your what's going on.
Reply With Quote
  #10 (permalink)  
Old 03-12-04, 09:24
tjarvas tjarvas is offline
Registered User
 
Join Date: Mar 2004
Posts: 361
Here is an example of what I am trying to do.
Attached Files
File Type: zip practice.zip (1.7 KB, 19 views)
Reply With Quote
  #11 (permalink)  
Old 03-12-04, 11:52
Smitty Smitty is offline
Registered User
 
Join Date: Dec 2003
Location: San Diego, CA
Posts: 153
Try this:

=IF(ISNA(VLOOKUP(A1,Color!A:C,3,FALSE)),VLOOKUP(A1 ,Color!D:F,3,FALSE),IF(ISNA(VLOOKUP(A1,Color!D:F,3 ,FALSE)),VLOOKUP(A1,Color!A:C,3,FALSE)))

Or:

=IF(ISNA(VLOOKUP(A1,Color!A:C,COLUMN()-1,FALSE)),VLOOKUP(A1,Color!D:F,COLUMN()-1,FALSE),IF(ISNA(VLOOKUP(A1,Color!D:F,COLUMN()-1,FALSE)),VLOOKUP(A1,Color!A:C,COLUMN()-1,FALSE)))

Both worked just fine for me based on your example.

Smitty
Reply With Quote
  #12 (permalink)  
Old 03-12-04, 13:04
tjarvas tjarvas is offline
Registered User
 
Join Date: Mar 2004
Posts: 361
Thanks a bunch!!!!
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