I process an input file created from a Database CSV file. This report has multiple cable Name entered Multiple times. After completion I want to remove duplicate cable names and put this in a Macro file by itself.
With Sheets("process")
.Unprotect
.Range("AE1").CurrentRegion.RemoveDuplicates Columns:=1, Header:=xlNo
.Protect
End With
I get an error that "This operation required the merged cells be identically sized".
There are no merged cells in column AE.
What am I missing.
Thanks
Michael
With Sheets("process")
.Unprotect
.Range("AE1").CurrentRegion.RemoveDuplicates Columns:=1, Header:=xlNo
.Protect
End With
I get an error that "This operation required the merged cells be identically sized".
There are no merged cells in column AE.
What am I missing.
Thanks
Michael