Row and Column lookup and fill value

Prascena

New Member
Joined
Nov 2, 2015
Messages
7
Hi,

1st sheet of my excel:

[TABLE="width: 500"]
<tbody>[TR]
[TD][/TD]
[TD]35582ac[/TD]
[TD]35582de[/TD]
[TD]38920aa[/TD]
[TD]38032f[/TD]
[/TR]
[TR]
[TD]332[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]122[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]21[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]32[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]

2nd sheet of my excel:

[TABLE="width: 500"]
<tbody>[TR]
[TD]IR No[/TD]
[TD]Assembly No[/TD]
[TD]Qty[/TD]
[/TR]
[TR]
[TD]04[/TD]
[TD]35582ac[/TD]
[TD]2[/TD]
[/TR]
[TR]
[TD]122[/TD]
[TD]38920aa[/TD]
[TD]3[/TD]
[/TR]
[TR]
[TD]122[/TD]
[TD]38852de[/TD]
[TD]1[/TD]
[/TR]
[TR]
[TD]32[/TD]
[TD]38032f[/TD]
[TD]2[/TD]
[/TR]
[TR]
[TD]332[/TD]
[TD]35582ac[/TD]
[TD]2[/TD]
[/TR]
[TR]
[TD]332[/TD]
[TD]38852de[/TD]
[TD]3[/TD]
[/TR]
</tbody>[/TABLE]

Required Output:

[TABLE="width: 500"]
<tbody>[TR]
[TD][/TD]
[TD]35582ac[/TD]
[TD]35582de[/TD]
[TD]38920aa[/TD]
[TD]38032f[/TD]
[/TR]
[TR]
[TD]332[/TD]
[TD]2[/TD]
[TD]3[/TD]
[TD]0[/TD]
[TD]0[/TD]
[/TR]
[TR]
[TD]122[/TD]
[TD]0[/TD]
[TD]1[/TD]
[TD]3[/TD]
[TD]0[/TD]
[/TR]
[TR]
[TD]21[/TD]
[TD]0[/TD]
[TD]0[/TD]
[TD]0[/TD]
[TD]0[/TD]
[/TR]
[TR]
[TD]32[/TD]
[TD]0[/TD]
[TD]0[/TD]
[TD]0[/TD]
[TD]2[/TD]
[/TR]
</tbody>[/TABLE]

Is it possible to automate this?

Please help with the formula.

Thank you in advance.

Regards,
Prasanna.A
 

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
Like this:

=SUMIFS(Sheet2!$C$1:$C$100,Sheet2!$A$1:$A$100,$A2,Sheet2!$B$1:$B$100,B$1)

You need to make sure your codes are identical though. 38852de is not 35582de
 
Upvote 0

Forum statistics

Threads
1,225,749
Messages
6,186,802
Members
453,373
Latest member
Ereha

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