Hi,
I am in need of a VBA code where it search a column based on multiple conditions (Check condition 1, if fails go to next condition.... and so on) in other columns and returns a unique list. Below is the table which explains it better:
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]Name[/TD]
[TD]Emp ID[/TD]
[TD]Date[/TD]
[TD]Task ID[/TD]
[TD]Production count[/TD]
[TD]Task ID[/TD]
[TD]Production Count[/TD]
[TD]Task ID[/TD]
[TD]Production Count[/TD]
[/TR]
[TR]
[TD]Amit[/TD]
[TD]A1620[/TD]
[TD]23/05[/TD]
[TD]ABC[/TD]
[TD]1200[/TD]
[TD]DEF[/TD]
[TD]1400[/TD]
[TD]GHI[/TD]
[TD]1100[/TD]
[/TR]
[TR]
[TD]Peter[/TD]
[TD]A1440[/TD]
[TD]23/05[/TD]
[TD]DEF[/TD]
[TD]1450[/TD]
[TD]ABC[/TD]
[TD]1150[/TD]
[TD]GHI[/TD]
[TD]500[/TD]
[/TR]
[TR]
[TD]William[/TD]
[TD]A1290[/TD]
[TD]24/05[/TD]
[TD]GHI[/TD]
[TD]1500[/TD]
[TD]DEF[/TD]
[TD]1450[/TD]
[TD]JKL[/TD]
[TD]200[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
Now i need a list of Names who has worked on date 23/05 on task ABC in another sheet. Right now i am doing it with formula, but that is making the sheet too slow.
Thanks in advance
I am in need of a VBA code where it search a column based on multiple conditions (Check condition 1, if fails go to next condition.... and so on) in other columns and returns a unique list. Below is the table which explains it better:
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]Name[/TD]
[TD]Emp ID[/TD]
[TD]Date[/TD]
[TD]Task ID[/TD]
[TD]Production count[/TD]
[TD]Task ID[/TD]
[TD]Production Count[/TD]
[TD]Task ID[/TD]
[TD]Production Count[/TD]
[/TR]
[TR]
[TD]Amit[/TD]
[TD]A1620[/TD]
[TD]23/05[/TD]
[TD]ABC[/TD]
[TD]1200[/TD]
[TD]DEF[/TD]
[TD]1400[/TD]
[TD]GHI[/TD]
[TD]1100[/TD]
[/TR]
[TR]
[TD]Peter[/TD]
[TD]A1440[/TD]
[TD]23/05[/TD]
[TD]DEF[/TD]
[TD]1450[/TD]
[TD]ABC[/TD]
[TD]1150[/TD]
[TD]GHI[/TD]
[TD]500[/TD]
[/TR]
[TR]
[TD]William[/TD]
[TD]A1290[/TD]
[TD]24/05[/TD]
[TD]GHI[/TD]
[TD]1500[/TD]
[TD]DEF[/TD]
[TD]1450[/TD]
[TD]JKL[/TD]
[TD]200[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
Now i need a list of Names who has worked on date 23/05 on task ABC in another sheet. Right now i am doing it with formula, but that is making the sheet too slow.
Thanks in advance