Hi,
I have the below two tables in two separate worksheets:
POSummary
[TABLE="class: grid, width: 500, align: left"]
<tbody>[TR]
[TD]Date[/TD]
[TD]PO[/TD]
[TD]Name[/TD]
[/TR]
[TR]
[TD]01.01.2011[/TD]
[TD]10987[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]01.02.2011[/TD]
[TD]10987[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]01.03.2011[/TD]
[TD]10987[/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
KRANData
[TABLE="class: grid, width: 500, align: left"]
<tbody>[TR]
[TD]Date[/TD]
[TD]PO[/TD]
[TD]Name[/TD]
[/TR]
[TR]
[TD]01.12.2010[/TD]
[TD]10987[/TD]
[TD]UK[/TD]
[/TR]
[TR]
[TD]01.01.2011[/TD]
[TD]10987[/TD]
[TD]USA[/TD]
[/TR]
[TR]
[TD]01.02.2011[/TD]
[TD]10987[/TD]
[TD]SA[/TD]
[/TR]
[TR]
[TD]01.03.2011[/TD]
[TD]10987[/TD]
[TD]AUS[/TD]
[/TR]
</tbody>[/TABLE]
What I would like to do is lookup the 'Name' from the KRANData table by using the 'Date' and 'PO' values within the POSummary table. For example, the 'Name' value in the first row of the POSummary table should be USA and the second row should be SA.
How can i achieve this?
With Thanks
I have the below two tables in two separate worksheets:
POSummary
[TABLE="class: grid, width: 500, align: left"]
<tbody>[TR]
[TD]Date[/TD]
[TD]PO[/TD]
[TD]Name[/TD]
[/TR]
[TR]
[TD]01.01.2011[/TD]
[TD]10987[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]01.02.2011[/TD]
[TD]10987[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]01.03.2011[/TD]
[TD]10987[/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
KRANData
[TABLE="class: grid, width: 500, align: left"]
<tbody>[TR]
[TD]Date[/TD]
[TD]PO[/TD]
[TD]Name[/TD]
[/TR]
[TR]
[TD]01.12.2010[/TD]
[TD]10987[/TD]
[TD]UK[/TD]
[/TR]
[TR]
[TD]01.01.2011[/TD]
[TD]10987[/TD]
[TD]USA[/TD]
[/TR]
[TR]
[TD]01.02.2011[/TD]
[TD]10987[/TD]
[TD]SA[/TD]
[/TR]
[TR]
[TD]01.03.2011[/TD]
[TD]10987[/TD]
[TD]AUS[/TD]
[/TR]
</tbody>[/TABLE]
What I would like to do is lookup the 'Name' from the KRANData table by using the 'Date' and 'PO' values within the POSummary table. For example, the 'Name' value in the first row of the POSummary table should be USA and the second row should be SA.
How can i achieve this?
With Thanks