Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have a set group of numbers associated with letters. I need to know what
formula I would use to accomplish the following: if (cell #1 = 1.26 then (Cell #2) = G f (cell #1 = 1.22 then (Cell #2) = c and so on. I would like to be able to input the number and have the letter show up inj another are. Thanks:) |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
snwooz wrote:
I have a set group of numbers associated with letters. I need to know what formula I would use to accomplish the following: if (cell #1 = 1.26 then (Cell #2) = G f (cell #1 = 1.22 then (Cell #2) = c and so on. I would like to be able to input the number and have the letter show up inj another are. Thanks:) You can use a VLOOKUP formula; you can build a Vlookup table and use the formula, or just incapsulate the table into the formula. -- Hope I helped you. Thanks in advance for your feedback. Ciao Franz Verga from Italy |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I am still confused. My table looks like this:
1 2 A 1.26 G B 1.22 C Can you please offer example. Don't use this much :) "Franz Verga" wrote: snwooz wrote: I have a set group of numbers associated with letters. I need to know what formula I would use to accomplish the following: if (cell #1 = 1.26 then (Cell #2) = G f (cell #1 = 1.22 then (Cell #2) = c and so on. I would like to be able to input the number and have the letter show up inj another are. Thanks:) You can use a VLOOKUP formula; you can build a Vlookup table and use the formula, or just incapsulate the table into the formula. -- Hope I helped you. Thanks in advance for your feedback. Ciao Franz Verga from Italy |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
what you require is "nested if". see help "if" and examples therein. you
have to enter the formula in the cell 2. "snwooz" wrote in message ... I have a set group of numbers associated with letters. I need to know what formula I would use to accomplish the following: if (cell #1 = 1.26 then (Cell #2) = G f (cell #1 = 1.22 then (Cell #2) = c and so on. I would like to be able to input the number and have the letter show up inj another are. Thanks:) |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
OK, first post put me on the right track. I have on that works, now i need
to it work for all 5 numbers. Thanks "R..VENKATARAMAN" wrote: what you require is "nested if". see help "if" and examples therein. you have to enter the formula in the cell 2. "snwooz" wrote in message ... I have a set group of numbers associated with letters. I need to know what formula I would use to accomplish the following: if (cell #1 = 1.26 then (Cell #2) = G f (cell #1 = 1.22 then (Cell #2) = c and so on. I would like to be able to input the number and have the letter show up inj another are. Thanks:) |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
snwooz wrote:
I am still confused. My table looks like this: 1 2 A 1.26 G B 1.22 C Can you please offer example. Don't use this much :) "Franz Verga" wrote: snwooz wrote: I have a set group of numbers associated with letters. I need to know what formula I would use to accomplish the following: if (cell #1 = 1.26 then (Cell #2) = G f (cell #1 = 1.22 then (Cell #2) = c and so on. I would like to be able to input the number and have the letter show up inj another are. Thanks:) =VLOOKUP(A1,{1.26,"G";1.22,"C"},2,0) where A1 is your input cell. -- Hope I helped you. Thanks in advance for your feedback. Ciao Franz Verga from Italy |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
PERFECT!!!! tHANKS:)
"Franz Verga" wrote: snwooz wrote: I am still confused. My table looks like this: 1 2 A 1.26 G B 1.22 C Can you please offer example. Don't use this much :) "Franz Verga" wrote: snwooz wrote: I have a set group of numbers associated with letters. I need to know what formula I would use to accomplish the following: if (cell #1 = 1.26 then (Cell #2) = G f (cell #1 = 1.22 then (Cell #2) = c and so on. I would like to be able to input the number and have the letter show up inj another are. Thanks:) =VLOOKUP(A1,{1.26,"G";1.22,"C"},2,0) where A1 is your input cell. -- Hope I helped you. Thanks in advance for your feedback. Ciao Franz Verga from Italy |
#8
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
IS it possible to set the formula to go either way. If A1 and B1 are my
input cells, can the formula work so that if I put in 1.26 in A1, G comes up in B1 or if I put G in B1, 1.26 comes up in A1? "Franz Verga" wrote: snwooz wrote: I am still confused. My table looks like this: 1 2 A 1.26 G B 1.22 C Can you please offer example. Don't use this much :) "Franz Verga" wrote: snwooz wrote: I have a set group of numbers associated with letters. I need to know what formula I would use to accomplish the following: if (cell #1 = 1.26 then (Cell #2) = G f (cell #1 = 1.22 then (Cell #2) = c and so on. I would like to be able to input the number and have the letter show up inj another are. Thanks:) =VLOOKUP(A1,{1.26,"G";1.22,"C"},2,0) where A1 is your input cell. -- Hope I helped you. Thanks in advance for your feedback. Ciao Franz Verga from Italy |
#9
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You have to decide which are your input cells and which are the result
cells: in a cell you can have a result from a formula or an input, not both... -- Hope I helped you. Thanks in advance for your feedback. Ciao Franz Verga from Italy "snwooz" ha scritto nel messaggio ... IS it possible to set the formula to go either way. If A1 and B1 are my input cells, can the formula work so that if I put in 1.26 in A1, G comes up in B1 or if I put G in B1, 1.26 comes up in A1? "Franz Verga" wrote: snwooz wrote: I am still confused. My table looks like this: 1 2 A 1.26 G B 1.22 C Can you please offer example. Don't use this much :) "Franz Verga" wrote: snwooz wrote: I have a set group of numbers associated with letters. I need to know what formula I would use to accomplish the following: if (cell #1 = 1.26 then (Cell #2) = G f (cell #1 = 1.22 then (Cell #2) = c and so on. I would like to be able to input the number and have the letter show up inj another are. Thanks:) =VLOOKUP(A1,{1.26,"G";1.22,"C"},2,0) where A1 is your input cell. -- Hope I helped you. Thanks in advance for your feedback. Ciao Franz Verga from Italy |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel displaying formulae as constant and not calculating formula | Excel Worksheet Functions | |||
Match then lookup | Excel Worksheet Functions | |||
How can i get an If formula in excel to edit another cell? | Excel Worksheet Functions | |||
converting formula from lotus.123 to excel | Excel Worksheet Functions | |||
Formula checking multiple worksheets | Excel Worksheet Functions |