View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
simon simon is offline
external usenet poster
 
Posts: 21
Default Find display the result

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



.