R
RobcPettit
Im checking 1 file against another (the files contain names). File 1 is up to
date names and file 2 is 5 days behind. Basically both files should be
identical, but occasionally a new name is added to file 1. What Im doing is
comparing files and any names that are in file 1 but not in file 2 are added to
a dynamic array, then listed to a column. No problems here. My problem is if no
new names are added, the array is not used. How do I check if an array is not
used.
If DnExist(1) <> "" Then
Application.Goto Reference:="Dates2" ' pastes list of names not in File 2 into
dates sheet
Range("d8").Resize(UBound(DnExist)) = Application.Transpose(DnExist).
This works if there are new names if not I get Subscript out of range. Ive
tried if array empty as well. Any advice would be appreciated.
Regards Robert
date names and file 2 is 5 days behind. Basically both files should be
identical, but occasionally a new name is added to file 1. What Im doing is
comparing files and any names that are in file 1 but not in file 2 are added to
a dynamic array, then listed to a column. No problems here. My problem is if no
new names are added, the array is not used. How do I check if an array is not
used.
If DnExist(1) <> "" Then
Application.Goto Reference:="Dates2" ' pastes list of names not in File 2 into
dates sheet
Range("d8").Resize(UBound(DnExist)) = Application.Transpose(DnExist).
This works if there are new names if not I get Subscript out of range. Ive
tried if array empty as well. Any advice would be appreciated.
Regards Robert