Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 921
Default Stuck! Please help

I have inherited a HUGE spreadsheet that probably needs to be converted to an
Access Database.

However, I have been tasked with making the info retrievable in its present
format.

Please give me suggestion for the following scenario:


10 columns/labels: Employee, Name, location, id#, Rating, etc.

2500 rows or records.

I would like to enter the employee name on a separated spreadsheet, and have
all of that employees records, or rows, displayed.

Thank you!!

Jeff

--
Jeff
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,856
Default Stuck! Please help

Are you implying that you might have more than one record for an
employee? Is the ID# unique - it would be better to use this rather
than name to specify who you want to find.

Pete

On Dec 15, 7:24*pm, Jeff wrote:
I have inherited a HUGE spreadsheet that probably needs to be converted to an
Access Database.

However, I have been tasked with making the info retrievable in its present
format.

Please give me suggestion for the following scenario:

10 columns/labels: *Employee, Name, location, id#, Rating, etc.

2500 rows or records.

I would like to enter the employee name on a separated spreadsheet, and have
all of that employee’s records, or rows, displayed.

Thank you!!

Jeff

--
Jeff


  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11,501
Default Stuck! Please help

Jeff

Your data on sheet 1 colmna A - J

Enter a name in a1 of sheet 2
Put this in b1 of sheet 2 and drag right 9 columns

=VLOOKUP($A$1,Sheet1!$A$1:$J$2500,COLUMN(B1))

Mike

"Jeff" wrote:

I have inherited a HUGE spreadsheet that probably needs to be converted to an
Access Database.

However, I have been tasked with making the info retrievable in its present
format.

Please give me suggestion for the following scenario:


10 columns/labels: Employee, Name, location, id#, Rating, etc.

2500 rows or records.

I would like to enter the employee name on a separated spreadsheet, and have
all of that employees records, or rows, displayed.

Thank you!!

Jeff

--
Jeff

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11,501
Default Stuck! Please help

Maybe a bit better

=IF($A$1="","",VLOOKUP($A$1,Sheet1!$A$1:$J$118,COL UMN(B1)))

Mike

"Mike H" wrote:

Jeff

Your data on sheet 1 colmna A - J

Enter a name in a1 of sheet 2
Put this in b1 of sheet 2 and drag right 9 columns

=VLOOKUP($A$1,Sheet1!$A$1:$J$2500,COLUMN(B1))

Mike

"Jeff" wrote:

I have inherited a HUGE spreadsheet that probably needs to be converted to an
Access Database.

However, I have been tasked with making the info retrievable in its present
format.

Please give me suggestion for the following scenario:


10 columns/labels: Employee, Name, location, id#, Rating, etc.

2500 rows or records.

I would like to enter the employee name on a separated spreadsheet, and have
all of that employees records, or rows, displayed.

Thank you!!

Jeff

--
Jeff

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 35,218
Default Stuck! Please help

And since the OP is matching on a name, I would think that he would want an
exact match.

=IF($A$1="","",VLOOKUP($A$1,Sheet1!$A$1:$J$118,COL UMN(B1),False))




Mike H wrote:

Maybe a bit better

=IF($A$1="","",VLOOKUP($A$1,Sheet1!$A$1:$J$118,COL UMN(B1)))

Mike

"Mike H" wrote:

Jeff

Your data on sheet 1 colmna A - J

Enter a name in a1 of sheet 2
Put this in b1 of sheet 2 and drag right 9 columns

=VLOOKUP($A$1,Sheet1!$A$1:$J$2500,COLUMN(B1))

Mike

"Jeff" wrote:

I have inherited a HUGE spreadsheet that probably needs to be converted to an
Access Database.

However, I have been tasked with making the info retrievable in its present
format.

Please give me suggestion for the following scenario:


10 columns/labels: Employee, Name, location, id#, Rating, etc.

2500 rows or records.

I would like to enter the employee name on a separated spreadsheet, and have
all of that employees records, or rows, displayed.

Thank you!!

Jeff

--
Jeff


--

Dave Peterson


  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 921
Default Stuck! Please help

Yes!

More than one record for an employee and there is no unique number.
--
Jeff


"Pete_UK" wrote:

Are you implying that you might have more than one record for an
employee? Is the ID# unique - it would be better to use this rather
than name to specify who you want to find.

Pete

On Dec 15, 7:24 pm, Jeff wrote:
I have inherited a HUGE spreadsheet that probably needs to be converted to an
Access Database.

However, I have been tasked with making the info retrievable in its present
format.

Please give me suggestion for the following scenario:

10 columns/labels: Employee, Name, location, id#, Rating, etc.

2500 rows or records.

I would like to enter the employee name on a separated spreadsheet, and have
all of that employees records, or rows, displayed.

Thank you!!

Jeff

--
Jeff



  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,856
Default Stuck! Please help

Jeff,

Here's a link to a post I answered a few days ago which is similar to
yours:

http://groups.google.com/group/micro...3d37affa313?q=

Perhaps you can adapt the suggestions there to your situation -
essentially, make a unique linked reference for each record in a
helper column (based on name), and then use that to bring multiple
records together on another sheet.

Hope this helps.

Pete

On Dec 15, 7:56*pm, Jeff wrote:
Yes!

More than one record for an employee and there is no unique number.
--
Jeff



"Pete_UK" wrote:
Are you implying that you might have more than one record for an
employee? Is the ID# unique - it would be better to use this rather
than name to specify who you want to find.


Pete


On Dec 15, 7:24 pm, Jeff wrote:
I have inherited a HUGE spreadsheet that probably needs to be converted to an
Access Database.


However, I have been tasked with making the info retrievable in its present
format.


Please give me suggestion for the following scenario:


10 columns/labels: *Employee, Name, location, id#, Rating, etc.


2500 rows or records.


I would like to enter the employee name on a separated spreadsheet, and have
all of that employee’s records, or rows, displayed.


Thank you!!


Jeff


--
Jeff- Hide quoted text -


- Show quoted text -


  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 921
Default Stuck! Please help

Rock on!

U DA MAN!


Would you agree, however, that ACCESS would be a better choice for this?
--
Jeff


"Pete_UK" wrote:

Jeff,

Here's a link to a post I answered a few days ago which is similar to
yours:

http://groups.google.com/group/micro...3d37affa313?q=

Perhaps you can adapt the suggestions there to your situation -
essentially, make a unique linked reference for each record in a
helper column (based on name), and then use that to bring multiple
records together on another sheet.

Hope this helps.

Pete

On Dec 15, 7:56 pm, Jeff wrote:
Yes!

More than one record for an employee and there is no unique number.
--
Jeff



"Pete_UK" wrote:
Are you implying that you might have more than one record for an
employee? Is the ID# unique - it would be better to use this rather
than name to specify who you want to find.


Pete


On Dec 15, 7:24 pm, Jeff wrote:
I have inherited a HUGE spreadsheet that probably needs to be converted to an
Access Database.


However, I have been tasked with making the info retrievable in its present
format.


Please give me suggestion for the following scenario:


10 columns/labels: Employee, Name, location, id#, Rating, etc.


2500 rows or records.


I would like to enter the employee name on a separated spreadsheet, and have
all of that employees records, or rows, displayed.


Thank you!!


Jeff


--
Jeff- Hide quoted text -


- Show quoted text -



  #9   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,856
Default Stuck! Please help

Thanks for the feedback, Jeff.

You described it as a HUGE database, but Excel comfortably handles
2,500 records - versions before XL2007 could manage 65,536 records in
each sheet - so why complicate it by using Access?

Pete

On Dec 16, 2:56*pm, Jeff wrote:
Rock on!

U DA MAN!

Would you agree, however, that ACCESS would be a better choice for this?
--
Jeff

  #10   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 921
Default Stuck! Please help

Not sure....but couldn't I then pull up records with multiple criteria easy?

For example, I want to pull up all "excellent" reviews in "Deparment"
Maintenance between "dates" of 1-1-04 & 1-1-07?
--
Jeff


"Pete_UK" wrote:

Thanks for the feedback, Jeff.

You described it as a HUGE database, but Excel comfortably handles
2,500 records - versions before XL2007 could manage 65,536 records in
each sheet - so why complicate it by using Access?

Pete

On Dec 16, 2:56 pm, Jeff wrote:
Rock on!

U DA MAN!

Would you agree, however, that ACCESS would be a better choice for this?
--
Jeff




  #11   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,856
Default Stuck! Please help

Well, you can do that in Excel if you apply filters to the Department
and Date columns (interactively), whereas in Access you would have to
write a report to do the same thing (but then it would be there
forever, and you could re-run it).

You can also use Advanced Filter in Excel for more complex
relationships, and set up formulae using SUBTOTAL, SUMIF, COUNTIF and
SUMPRODUCT for summary counts and totals.

I analyse telephone call records for my clients each month. Some of
these have 40,000 to 50,000 records, but I can manage quite well using
Excel to produce various tables and graphs automatically - I just copy/
paste the new data in each month and then I have my reports on
separate sheets.

It all depends on what you are happier using - I'm an Excel man,
myself.

Pete

On Dec 16, 4:41*pm, Jeff wrote:
Not sure....but couldn't I then pull up records with multiple criteria easy?

For example, I want to pull up all "excellent" reviews in "Deparment"
Maintenance between "dates" of *1-1-04 & 1-1-07?
--
Jeff



"Pete_UK" wrote:
Thanks for the feedback, Jeff.


You described it as a HUGE database, but Excel comfortably handles
2,500 records - versions before XL2007 could manage 65,536 records in
each sheet - so why complicate it by using Access?


Pete


On Dec 16, 2:56 pm, Jeff wrote:
Rock on!


U DA MAN!


Would you agree, however, that ACCESS would be a better choice for this?
--
Jeff- Hide quoted text -


- Show quoted text -


  #12   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 921
Default Stuck! Please help

I agree completely! I prefer Excel.

My challenge is that another user (very limited experience) is the person
who needs to access the data on a regular basis.

--
Jeff


"Pete_UK" wrote:

Well, you can do that in Excel if you apply filters to the Department
and Date columns (interactively), whereas in Access you would have to
write a report to do the same thing (but then it would be there
forever, and you could re-run it).

You can also use Advanced Filter in Excel for more complex
relationships, and set up formulae using SUBTOTAL, SUMIF, COUNTIF and
SUMPRODUCT for summary counts and totals.

I analyse telephone call records for my clients each month. Some of
these have 40,000 to 50,000 records, but I can manage quite well using
Excel to produce various tables and graphs automatically - I just copy/
paste the new data in each month and then I have my reports on
separate sheets.

It all depends on what you are happier using - I'm an Excel man,
myself.

Pete

On Dec 16, 4:41 pm, Jeff wrote:
Not sure....but couldn't I then pull up records with multiple criteria easy?

For example, I want to pull up all "excellent" reviews in "Deparment"
Maintenance between "dates" of 1-1-04 & 1-1-07?
--
Jeff



"Pete_UK" wrote:
Thanks for the feedback, Jeff.


You described it as a HUGE database, but Excel comfortably handles
2,500 records - versions before XL2007 could manage 65,536 records in
each sheet - so why complicate it by using Access?


Pete


On Dec 16, 2:56 pm, Jeff wrote:
Rock on!


U DA MAN!


Would you agree, however, that ACCESS would be a better choice for this?
--
Jeff- Hide quoted text -


- Show quoted text -



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
HELP!! It's STuck ConfusedNHouston Excel Discussion (Misc queries) 1 June 16th 06 10:16 PM
Stuck... Mike Excel Discussion (Misc queries) 4 May 22nd 06 08:09 PM
Please help, I'm stuck Ben Excel Discussion (Misc queries) 2 March 30th 06 09:50 PM
stuck darkbearpooh1 Excel Worksheet Functions 7 February 10th 06 10:21 PM
Stuck with an =IF Mark R... Excel Worksheet Functions 2 January 25th 06 04:41 PM


All times are GMT +1. The time now is 12:52 AM.

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

About Us

"It's about Microsoft Excel"