Thread: MATCH
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Eduardo Eduardo is offline
external usenet poster
 
Posts: 2,276
Default MATCH

Hi,
your information is in column A to E in both sheets, so in sheet 1 to bring
the date enter

=index(sheet2!$A$2:$A$10000,match(D2,sheet2!$D$2:$ D$10000,0),match(E2,sheet2!$E$2:$E$10000,0))

in cell B2 enter

=index(sheet2!$B$2:$B$10000,match(D2,sheet2!$D$2:$ D$10000,0),match(E2,sheet2!$E$2:$E$10000,0))

"Sasikiran" wrote:

Hello,

I am looking for a formula which looks for 2 specific text values which are
there in sheet1, matches with the same text in sheet2 and displays the
corresponding value which is there in sheet2 on a cell in sheet1.

Let me explain with an example.

Sheet1 has data similar to this

Date Time Emp Number Name Designation
= = 23 Bob Manager


The cell which displays Time should match the Name and Designation in sheet1
with the same Name and Designation in sheet2 and display the corresponding
Date and Time value present in sheet2 on to sheet1

Sheet2 has raw data in these headers

Date Time Emp Number Name
27-Apr 18:00 23 Bob
27-Apr 18:22 26 Kate


Please help