Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
I have two text fields that i would like to make equal to each other and any
time I type this word I would like it to be able to return a number associated with the text field. Bellsouth=Telephone (result) code 85000 |
#2
![]() |
|||
|
|||
![]()
Hi
i think you're after the VLOOKUP function, check it out in help and post back if you need assistance implementing it. -- Cheers JulieD check out www.hcts.net.au/tipsandtricks.htm ....well i'm working on it anyway "Maggie" <Maggie @discussions.microsoft.com wrote in message ... I have two text fields that i would like to make equal to each other and any time I type this word I would like it to be able to return a number associated with the text field. Bellsouth=Telephone (result) code 85000 |
#3
![]() |
|||
|
|||
![]()
Hello JulieD,
I have used VLOOKUP before however, I am unfamilliar with this aspect of it. I am new to this so I am really looking for the answer. Once I have it I can build off of it. Where is the help and post function? "JulieD" wrote: Hi i think you're after the VLOOKUP function, check it out in help and post back if you need assistance implementing it. -- Cheers JulieD check out www.hcts.net.au/tipsandtricks.htm ....well i'm working on it anyway "Maggie" <Maggie @discussions.microsoft.com wrote in message ... I have two text fields that i would like to make equal to each other and any time I type this word I would like it to be able to return a number associated with the text field. Bellsouth=Telephone (result) code 85000 |
#4
![]() |
|||
|
|||
![]()
Hi Maggie
by HELP i meant the help in Excel - depending on your version either type VLOOKUP into the paperclip office assistant or the "ask a question box" top right of the screen and press enter. by POST i meant send us another message after you've checked out help to see if the VLOOKUP is the type of thing you mean or not. If it doesn't seem to be what you want, maybe try explaining what you're after in another way. - the thing i'm not sure about is do you want to type "Bellsouth" and have the cell next to it populate with "Telephone (result) code 85000" or do you want to type Bellsouth and have the cell you typed it into change to Telephone (result) code 85000 -- Cheers JulieD check out www.hcts.net.au/tipsandtricks.htm ....well i'm working on it anyway "Maggie" wrote in message ... Hello JulieD, I have used VLOOKUP before however, I am unfamilliar with this aspect of it. I am new to this so I am really looking for the answer. Once I have it I can build off of it. Where is the help and post function? "JulieD" wrote: Hi i think you're after the VLOOKUP function, check it out in help and post back if you need assistance implementing it. -- Cheers JulieD check out www.hcts.net.au/tipsandtricks.htm ....well i'm working on it anyway "Maggie" <Maggie @discussions.microsoft.com wrote in message ... I have two text fields that i would like to make equal to each other and any time I type this word I would like it to be able to return a number associated with the text field. Bellsouth=Telephone (result) code 85000 |
#5
![]() |
|||
|
|||
![]()
I have to pay bills using a Chart of account codes (sheet 2 of the
spreadsheet) and sheet one is the bill paying log sheet. Column B is where I type in the actuall Company I am paying (bellsouth) on Column C is the "account code" I have to post against. On Sheet 2 there are codes and descriptions for each code. When I type in Bellsouth on sheet 1 in column B I would like it to refer to sheet two and match it to telephone which has a code assigned to it of 85000 and would like it to fill Column C with that number. "JulieD" wrote: Hi Maggie by HELP i meant the help in Excel - depending on your version either type VLOOKUP into the paperclip office assistant or the "ask a question box" top right of the screen and press enter. by POST i meant send us another message after you've checked out help to see if the VLOOKUP is the type of thing you mean or not. If it doesn't seem to be what you want, maybe try explaining what you're after in another way. - the thing i'm not sure about is do you want to type "Bellsouth" and have the cell next to it populate with "Telephone (result) code 85000" or do you want to type Bellsouth and have the cell you typed it into change to Telephone (result) code 85000 -- Cheers JulieD check out www.hcts.net.au/tipsandtricks.htm ....well i'm working on it anyway "Maggie" wrote in message ... Hello JulieD, I have used VLOOKUP before however, I am unfamilliar with this aspect of it. I am new to this so I am really looking for the answer. Once I have it I can build off of it. Where is the help and post function? "JulieD" wrote: Hi i think you're after the VLOOKUP function, check it out in help and post back if you need assistance implementing it. -- Cheers JulieD check out www.hcts.net.au/tipsandtricks.htm ....well i'm working on it anyway "Maggie" <Maggie @discussions.microsoft.com wrote in message ... I have two text fields that i would like to make equal to each other and any time I type this word I would like it to be able to return a number associated with the text field. Bellsouth=Telephone (result) code 85000 |
#6
![]() |
|||
|
|||
![]()
you can use VLOOKUP if on Sheet 2 you have
.......A...............B...................C 1....Company....Cateogry......Code 2.....Bellsouth....Telephone.....85000 then on sheet 1 cell C2 the formula would be =VLOOKUP(B2,Sheet2!$A$2:$C$1000,3,0) which says, look at the value in B2, find it in column A of sheet2 and return the associated information from the third column of the table, ie column C, where there is an exact match. (you need to tell Excel somehow that Bellsouth should be matched to telephone) -- Cheers JulieD check out www.hcts.net.au/tipsandtricks.htm ....well i'm working on it anyway "Maggie" wrote in message ... I have to pay bills using a Chart of account codes (sheet 2 of the spreadsheet) and sheet one is the bill paying log sheet. Column B is where I type in the actuall Company I am paying (bellsouth) on Column C is the "account code" I have to post against. On Sheet 2 there are codes and descriptions for each code. When I type in Bellsouth on sheet 1 in column B I would like it to refer to sheet two and match it to telephone which has a code assigned to it of 85000 and would like it to fill Column C with that number. "JulieD" wrote: Hi Maggie by HELP i meant the help in Excel - depending on your version either type VLOOKUP into the paperclip office assistant or the "ask a question box" top right of the screen and press enter. by POST i meant send us another message after you've checked out help to see if the VLOOKUP is the type of thing you mean or not. If it doesn't seem to be what you want, maybe try explaining what you're after in another way. - the thing i'm not sure about is do you want to type "Bellsouth" and have the cell next to it populate with "Telephone (result) code 85000" or do you want to type Bellsouth and have the cell you typed it into change to Telephone (result) code 85000 -- Cheers JulieD check out www.hcts.net.au/tipsandtricks.htm ....well i'm working on it anyway "Maggie" wrote in message ... Hello JulieD, I have used VLOOKUP before however, I am unfamilliar with this aspect of it. I am new to this so I am really looking for the answer. Once I have it I can build off of it. Where is the help and post function? "JulieD" wrote: Hi i think you're after the VLOOKUP function, check it out in help and post back if you need assistance implementing it. -- Cheers JulieD check out www.hcts.net.au/tipsandtricks.htm ....well i'm working on it anyway "Maggie" <Maggie @discussions.microsoft.com wrote in message ... I have two text fields that i would like to make equal to each other and any time I type this word I would like it to be able to return a number associated with the text field. Bellsouth=Telephone (result) code 85000 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
TEXT SHOWS UP IN FORMULA BAR BUT NOT IN CELL? | Excel Discussion (Misc queries) | |||
Coverting Formula to Text | Excel Discussion (Misc queries) | |||
Adding text to the result of a formula? | Excel Worksheet Functions | |||
Search column and move text formula | Excel Discussion (Misc queries) | |||
How do I compare two lists of names in excel? | Excel Discussion (Misc queries) |