SharmaAntriksh
New Member
- Joined
- Nov 8, 2017
- Messages
- 31
[TABLE="width: 600"]
<tbody>[TR]
[TD]Employee Name[/TD]
[TD]Client Name[/TD]
[TD]Assigned on[/TD]
[TD]Due Date[/TD]
[TD]Actual Delivered Date[/TD]
[/TR]
[TR]
[TD]Antriksh Sharma[/TD]
[TD]xyz[/TD]
[TD]7/2/2018[/TD]
[TD]7/4/2018[/TD]
[TD]7/5/2018[/TD]
[/TR]
[TR]
[TD]Monique[/TD]
[TD]abc[/TD]
[TD]6/7/2018[/TD]
[TD]6/22/2018[/TD]
[TD]6/19/2018[/TD]
[/TR]
[TR]
[TD]Antriksh Sharma[/TD]
[TD]edf[/TD]
[TD]6/3/2018[/TD]
[TD]6/5/2018[/TD]
[TD]6/5/2018[/TD]
[/TR]
[TR]
[TD]Monique[/TD]
[TD]mnb[/TD]
[TD]5/3/2018[/TD]
[TD]5/20/2018[/TD]
[TD]5/21/2018[/TD]
[/TR]
</tbody>[/TABLE]
I have as huge database that looks similar to the above table, and i have a lookup table where i have the client names, i am trying to create VBA code which can help me in quickly extracting data from the above table if it matches my lookup table, i tried "For Each" loop but that evaluates again and again and is really slow, can you help me with some thoughts or code on how to make this process efficient?
<tbody>[TR]
[TD]Employee Name[/TD]
[TD]Client Name[/TD]
[TD]Assigned on[/TD]
[TD]Due Date[/TD]
[TD]Actual Delivered Date[/TD]
[/TR]
[TR]
[TD]Antriksh Sharma[/TD]
[TD]xyz[/TD]
[TD]7/2/2018[/TD]
[TD]7/4/2018[/TD]
[TD]7/5/2018[/TD]
[/TR]
[TR]
[TD]Monique[/TD]
[TD]abc[/TD]
[TD]6/7/2018[/TD]
[TD]6/22/2018[/TD]
[TD]6/19/2018[/TD]
[/TR]
[TR]
[TD]Antriksh Sharma[/TD]
[TD]edf[/TD]
[TD]6/3/2018[/TD]
[TD]6/5/2018[/TD]
[TD]6/5/2018[/TD]
[/TR]
[TR]
[TD]Monique[/TD]
[TD]mnb[/TD]
[TD]5/3/2018[/TD]
[TD]5/20/2018[/TD]
[TD]5/21/2018[/TD]
[/TR]
</tbody>[/TABLE]
I have as huge database that looks similar to the above table, and i have a lookup table where i have the client names, i am trying to create VBA code which can help me in quickly extracting data from the above table if it matches my lookup table, i tried "For Each" loop but that evaluates again and again and is really slow, can you help me with some thoughts or code on how to make this process efficient?