Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I am trying to find a way to have a number or letter represent certain cell
contents so that when I type that number or letter into a new cell it will automatically fill with the represented cell contents. Example: cell A1= Apples and I want 1 to represent the contents in A1 which is Apples so that when I enter 1 into cell A2 the word Apples automatically fills in for cell A2. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Take a look as VLOOKUP. Something like this in F1:
=vlookup(a1,b1:c3,2,0) Where you would enter 1, 2, or 3 in a1. Where b1 = 1, b2 = 2, b3 = 3. Where c1 = apple, c2 = pear, c3 = orange. The 2 points to the second column of b1:c3 table The 0 demands an exact match. HTH Regards, Howard "Formula help" <Formula wrote in message ... I am trying to find a way to have a number or letter represent certain cell contents so that when I type that number or letter into a new cell it will automatically fill with the represented cell contents. Example: cell A1= Apples and I want 1 to represent the contents in A1 which is Apples so that when I enter 1 into cell A2 the word Apples automatically fills in for cell A2. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
vlookup will do what you want.On your sheet somewhere you need to make a
table,in cell c1,1,d1,apple,c2,2,d2,ball,etc through to c7,7,d7,grape,in a2 =IF(ISNA(VLOOKUP(A1,C1:D7,2,FALSE)),"",VLOOKUP(A1, C1:D7,2,FALSE)) when you type 1 or whatever in a1 you get the desired text in a2,if nothing is in a1 a2 is blank -- paul remove nospam for email addy! "Formula help" wrote: I am trying to find a way to have a number or letter represent certain cell contents so that when I type that number or letter into a new cell it will automatically fill with the represented cell contents. Example: cell A1= Apples and I want 1 to represent the contents in A1 which is Apples so that when I enter 1 into cell A2 the word Apples automatically fills in for cell A2. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Set number format based on cell contents | Excel Discussion (Misc queries) | |||
Getting contents of a cell when cell reference is in the sheet | Excel Discussion (Misc queries) | |||
How do I add row total when cell contains both number and letter . | Excel Discussion (Misc queries) | |||
How do I get a letter in one cell ito equal a number in anotherl.. | Excel Discussion (Misc queries) | |||
Formatting a cell as "text" in the number catagory. | Excel Worksheet Functions |