Dear Forum Members,
Due to very urgent situation, i am reposting this thread and not aware about policy to repost and apologies for that.
- I need your guidance and technical inputs in the following requirements:
- I have a master data set (workbook) to collect the details of visitors to the counselling center regularly, which has been shared with various 30 counselling centers in the state.
- I want to consolidate these 30 counselling centers master data set (Specific Sheet from the workbooks and sheet name is "Master Sheet") on every month.
- The consolidation should be done in the "Summary Sheet" (same master data set template and already has a header).
- Master data set range is A5 : CQ5004 (Data starts from A5) and I want to consolidate only data filed rows and should ignored blank rows in each workbook.
- I have used the following VBA code and it works well, but it consolidates all the blank rows also. But i need only data filed row
s.
Sub simpleXlmMerger()
Dim bookList As Workbook
Dim mergeObj As Object, dirObj As Object, filesObj As Object, everyObj As Object
Application.ScreenUpdating = False
Set mergeObj = CreateObject("Scripting.FileSystemObject")
Set dirObj = mergeObj.Getfolder("F:\National Set")
Set filesObj = dirObj.Files
For Each everyObj In filesObj
Set bookList = Workbooks.Open(everyObj)
Range("A5:CQ" & Range("A1048576").End(xlUp).Row).Copy
ThisWorkbook.Worksheets(1).Activate
Range("A1048576").End(xlUp).Offset(4, 0).PasteSpecial
Application.CutCopyMode = False
bookList.Close
Next
End Sub
Appreciate your help and support on this.
Regards
Bala
Bookmarks