Chance1234
IS-IT--Management
I have the following lines of code
All works fine unless I have blank rows or a question mark in my data (which i will have)
splitting this down;
does anyone know how to adapt the above to ignore blanks
and secondly does anyone know or have an idea how to approach the question mark
Chance,
F, G + Its official, its even on a organisation chart et all
Code:
with ThisWorkbook.Sheets("list")
.Range("L1", .Range("L65536").End(xlUp)).AdvancedFilter _
Action:=xlFilterCopy, CriteriaRange:="ctl_blank", CopyToRange:=Sheet2.Range("i1"), Unique:=True
Sheet2.Range("i1").CurrentRegion.Offset(1, 0).Name = "be_meeting"
ThisWorkbook.Sheets("Lookup").Range("be_meeting").Sort Key1:=ThisWorkbook.Sheets("lookup").Range("be_meeting").Cells(1, 1), Order1:=xlAscending, Header:=xlYes
'owner
...
end with
All works fine unless I have blank rows or a question mark in my data (which i will have)
splitting this down;
does anyone know how to adapt the above to ignore blanks
and secondly does anyone know or have an idea how to approach the question mark
Chance,
F, G + Its official, its even on a organisation chart et all