Index And Match Problem

manishmaheshwari

New Member
Joined
Feb 25, 2019
Messages
2
Hello

Please help me to sort this query.

I have have 3 Sheet

Sheet1 data is (Only data entry)

DATE
B.NOPRODUCT
BL NO
SILICAHM-100SILICA ADD TO DISCHARGE TIME
TOTAL OUT PUTLOSS
02.01.191/01HM-65
1-A40070160 MINUTE11000

<colgroup><col><col><col><col span="3"><col><col><col></colgroup><tbody>
</tbody>

Sheet2
DATE
B.NOPRODUCTASHLODSIEVEMOISTURECUSTOMERREMARKS
02.01.191/01HM-6533.173.87 0.00
0.00
JK


<colgroup><col style="mso-width-source:userset;mso-width-alt:3145;width:65pt" width="86"> <col style="mso-width-source:userset;mso-width-alt:2816;width:58pt" width="77"> <col style="mso-width-source:userset;mso-width-alt:4900;width:101pt" width="134"> <col style="width:48pt" width="64" span="3"> <col style="mso-width-source:userset;mso-width-alt:3584;width:74pt" width="98"> <col style="mso-width-source:userset;mso-width-alt:3657;width:75pt" width="100"> <col style="mso-width-source:userset;mso-width-alt:3328;width:68pt" width="91"> </colgroup><tbody>
</tbody>
having formula from sheet1(date b-no product column)
Sheet3 (having column of DATA SHEET1+SHEET)

SHEET3 COLUMN AS BELOW
DATE
B.NOPRODUCTBL NOSILICAHM-100SILICA ADD TO DISCHARGE TIMETOTAL OUT PUTLOSSASHLODSIEVEMOISTURECUSTOMERREMARKS

<colgroup><col width="79"><col width="67"><col width="77"><col width="64" span="3"><col width="126"><col width="76"><col width="64" span="4"><col width="98"><col width="115"><col width="91"></colgroup><tbody>
</tbody>

FORMULA IS =IFERROR(INDEX(REPORT!A$2:$O$345,SMALL(IF($N$3=REPORT!$N$3:$N$345,ROW(REPORT!$N$3:$N$345)-3,""),1),1),"")

BUT AFTER SOME ROWS IT GIVE BLANK ROW AND AGAIN DATA CAN BEEN SEEN
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
Is the Product code HM-65 unique on both sheets?
 
Upvote 0
Maybe:
Array formula enter with CTRL-SHIFT-ENTER

Code:
=IFERROR(INDEX(REPORT!A$2:$O$345,SMALL(IF($N$3=REPORT!$N$3:$N$345,ROW(REPORT!$N$3:$N$345)-ROW($N$3)+1),COUNTIF($N$3:N3,N3)),1),"")
 
Upvote 0

Forum statistics

Threads
1,214,644
Messages
6,120,709
Members
448,983
Latest member
Joaquim_Baptista

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top