Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4
Default Linking a Specific Word to a Specific Number

Hell all,

I have a workbook which contains several worksheets. Each worksheet
contains specific data as text with an ID number. i.e. Hip ID number
for this wrod is 2. The word Hip and its ID number are located in the
Body Part worksheet. There's a main worksheet named Map, which is
where I would like to be able to tyoe the word Hip and have the ID
number automatically appear in a specific cell in the Map worksheet.

This is the Body Part worksheet

Body Part ID Body Part
1 Shoulder
2 Hip
3 Knee

This is the map:

Category ID Body Part Complaint Element Group Question
2 (cell b6) Hip (cell I6)

I would like to type the word Hip under body part on cell I6 and have
the number 2 appear automatically in the Category ID cell b6.

Thanks in advance

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,203
Default Linking a Specific Word to a Specific Number

I'm going to assume that on your body part worksheet that the Body Part ID is
in column A, and the Body Part (name) is in column B. I am also going to
assume that the sheet's name is Parts List
in B6 type this formula:
=OFFSET('Parts List'!$A$1,MATCH(I6,'Parts List'!$B$1:$B$3,0)-1,0)

The use of the $ signs is important - it keeps the references to the column
ranges on the Parts List sheet from changing as you copy the formula to more
cells on the other sheet. But you don't want $ signs in the "I6" reference
so that it will automatically adjust itself as you extend the formula up/down
the sheet there.

Change Parts List to be the real sheet's name, and change $B$3 to be the
last cell with a body part name in it on that sheet.

To keep #NA from popping up in cells before you've entered a body part name,
alter that formula to look like this:
=IF(ISNA(OFFSET('Parts List'!$A$1,MATCH(I6,'Parts
List'!$B$1:$B$3,0)-1,0)),"",OFFSET('Parts List'!$A$1,MATCH(I6,'Parts
List'!$B$1:$B$3,0)-1,0))

I recommend that you use a list with data validation in the 'I' column to
select the body part from to prevent misspellings from returning erroneous
results.

" wrote:

Hell all,

I have a workbook which contains several worksheets. Each worksheet
contains specific data as text with an ID number. i.e. Hip ID number
for this wrod is 2. The word Hip and its ID number are located in the
Body Part worksheet. There's a main worksheet named Map, which is
where I would like to be able to tyoe the word Hip and have the ID
number automatically appear in a specific cell in the Map worksheet.

This is the Body Part worksheet

Body Part ID Body Part
1 Shoulder
2 Hip
3 Knee

This is the map:

Category ID Body Part Complaint Element Group Question
2 (cell b6) Hip (cell I6)

I would like to type the word Hip under body part on cell I6 and have
the number 2 appear automatically in the Category ID cell b6.

Thanks in advance


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
Pasting charts to Word from Excel as picture Hari Charts and Charting in Excel 5 July 5th 06 08:04 PM
count the number of times a specific word appears in a column BAR Excel Worksheet Functions 1 June 27th 06 05:03 PM
Pulling Data off Web - Need Function Help patfergie44 Excel Worksheet Functions 9 June 22nd 06 03:27 AM
how do I find an average number of specific words in a column cashgrfx New Users to Excel 7 January 6th 05 04:44 PM
getting specific info from a word document into excel smintey Excel Discussion (Misc queries) 3 December 8th 04 08:20 PM


All times are GMT +1. The time now is 07:12 PM.

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"