Jagdev Singh
Active Member
Hi Nebu
When I am implementing the macro in actual data of around 16000 names in the Master sheet. It is checking the existing name in the RawData sheet of the macro which is run before without add the check() code the count was 600. After adding the check() code in the macro and I try to run it again, it gives the code 1 and 2 to the 600 entries which were already there before in the macro. The names which were missing it pulls that as well in the Rawdata sheet of the macro, but from the row 14000 keeping the list of blank rows from 600 to 14000. Any specific reason for it, what am I doing in the mastersheet is filtering it first while adding the below VBA code
ActiveSheet.ListObjects("Table1").Range.AutoFilter Field:=50, Criteria1:= _
"=New", Operator:=xlOr, Criteria2:="=YES"
After this code it starts checking the un-match name and pastes them in the Macro under Rawdata sheet. Is there anything wrong I am doing here?
When I am implementing the macro in actual data of around 16000 names in the Master sheet. It is checking the existing name in the RawData sheet of the macro which is run before without add the check() code the count was 600. After adding the check() code in the macro and I try to run it again, it gives the code 1 and 2 to the 600 entries which were already there before in the macro. The names which were missing it pulls that as well in the Rawdata sheet of the macro, but from the row 14000 keeping the list of blank rows from 600 to 14000. Any specific reason for it, what am I doing in the mastersheet is filtering it first while adding the below VBA code
ActiveSheet.ListObjects("Table1").Range.AutoFilter Field:=50, Criteria1:= _
"=New", Operator:=xlOr, Criteria2:="=YES"
After this code it starts checking the un-match name and pastes them in the Macro under Rawdata sheet. Is there anything wrong I am doing here?