Hi Everyone,
I have an excel table from where I would have to fetch value from master data. The report table looks like this.
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]Name[/TD]
[TD]Date1[/TD]
[TD]Date2[/TD]
[TD]Date3[/TD]
[/TR]
[TR]
[TD]Anir[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Rex[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Potter[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Shiva[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Rex[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Tango[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
I would have to fetch values from the a master table to populate Date1, Date2 and Date3 columns.
The format of the master table looks like this
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[/TR]
[TR]
[TD]Name[/TD]
[TD]Date1[/TD]
[TD]Date2[/TD]
[TD]Date3[/TD]
[/TR]
[TR]
[TD]Anir[/TD]
[TD]23[/TD]
[TD]54[/TD]
[TD]65[/TD]
[/TR]
[TR]
[TD]Rex[/TD]
[TD]88[/TD]
[TD]45[/TD]
[TD]45[/TD]
[/TR]
[TR]
[TD]Potter[/TD]
[TD]48[/TD]
[TD]96[/TD]
[TD]25[/TD]
[/TR]
[TR]
[TD]Shiva[/TD]
[TD]55[/TD]
[TD]66[/TD]
[TD]78[/TD]
[/TR]
[TR]
[TD]Rex[/TD]
[TD]58[/TD]
[TD]98[/TD]
[TD]45[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
I am using index match to populate the report table based on the Names, using index match, but since there are duplicate names with different values, only the values corresponding the first entry is being populated everywhere.
Can anyone please suggest any way to perform this operation with any relevant function along with Index Match?
Thanks in advance.
I have an excel table from where I would have to fetch value from master data. The report table looks like this.
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]Name[/TD]
[TD]Date1[/TD]
[TD]Date2[/TD]
[TD]Date3[/TD]
[/TR]
[TR]
[TD]Anir[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Rex[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Potter[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Shiva[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Rex[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Tango[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
I would have to fetch values from the a master table to populate Date1, Date2 and Date3 columns.
The format of the master table looks like this
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[/TR]
[TR]
[TD]Name[/TD]
[TD]Date1[/TD]
[TD]Date2[/TD]
[TD]Date3[/TD]
[/TR]
[TR]
[TD]Anir[/TD]
[TD]23[/TD]
[TD]54[/TD]
[TD]65[/TD]
[/TR]
[TR]
[TD]Rex[/TD]
[TD]88[/TD]
[TD]45[/TD]
[TD]45[/TD]
[/TR]
[TR]
[TD]Potter[/TD]
[TD]48[/TD]
[TD]96[/TD]
[TD]25[/TD]
[/TR]
[TR]
[TD]Shiva[/TD]
[TD]55[/TD]
[TD]66[/TD]
[TD]78[/TD]
[/TR]
[TR]
[TD]Rex[/TD]
[TD]58[/TD]
[TD]98[/TD]
[TD]45[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
I am using index match to populate the report table based on the Names, using index match, but since there are duplicate names with different values, only the values corresponding the first entry is being populated everywhere.
Can anyone please suggest any way to perform this operation with any relevant function along with Index Match?
Thanks in advance.