Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
how to find a number in column A and display resuting cell address and content in the column B of the same row. Ex: If found in A5; I want to display "A5" & content in "B5" Thanks |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Simon,
assuming that you data start in row 1 use the following ="Found in A" & MATCH(search_number,$A$1:$A$999,0) & "; Result: " & VLOOKUP(search_number,$A1:$B999,2,False) HTH Frank Simon wrote: Hi, how to find a number in column A and display resuting cell address and content in the column B of the same row. Ex: If found in A5; I want to display "A5" & content in "B5" Thanks |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Believe Frank meant this based on the desired result described.
="Found in A" & MATCH(search_number,$A$1:$A$999,0) & "; Result: " & VLOOKUP(search_number,$A1:$A999,1,False) -- Regards, Tom Ogilvy Frank Kabel wrote in message ... Hi Simon, assuming that you data start in row 1 use the following ="Found in A" & MATCH(search_number,$A$1:$A$999,0) & "; Result: " & VLOOKUP(search_number,$A1:$B999,2,False) HTH Frank Simon wrote: Hi, how to find a number in column A and display resuting cell address and content in the column B of the same row. Ex: If found in A5; I want to display "A5" & content in "B5" Thanks |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Tom
sure :-) Frank Tom Ogilvy wrote: Believe Frank meant this based on the desired result described. ="Found in A" & MATCH(search_number,$A$1:$A$999,0) & "; Result: " & VLOOKUP(search_number,$A1:$A999,1,False) Frank Kabel wrote in message ... Hi Simon, assuming that you data start in row 1 use the following ="Found in A" & MATCH(search_number,$A$1:$A$999,0) & "; Result: " & VLOOKUP(search_number,$A1:$B999,2,False) HTH Frank Simon wrote: Hi, how to find a number in column A and display resuting cell address and content in the column B of the same row. Ex: If found in A5; I want to display "A5" & content in "B5" Thanks |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks Frank for your useful reply
Simon -----Original Message----- Hi Simon, assuming that you data start in row 1 use the following ="Found in A" & MATCH(search_number,$A$1:$A$999,0) & "; Result: " & VLOOKUP(search_number,$A1:$B999,2,False) HTH Simon wrote: Hi, how to find a number in column A and display resuting cell address and content in the column B of the same row. Ex: If found in A5; I want to display "A5" & content in "B5" Thanks . |
#6
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Simon
you're welcome Frank |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
DISPLAY A RESULT | Excel Discussion (Misc queries) | |||
how to not display a certain result | Excel Discussion (Misc queries) | |||
How do I display 0 if it is the end result for a formula | Excel Discussion (Misc queries) | |||
How can I display a result as a cell name? | Excel Discussion (Misc queries) | |||
Display result as Yes or No | Excel Worksheet Functions |