I have a macro that searches for data in worksheets data1 - data5 in the same workbook.
How to change the macro to the data searched in all the worksheets and workbooks ?
My Marco:
regardsSub Search() Dim xlForm As Excel.Worksheet, ostForm As Long Dim xlWks As Excel.Worksheet, ostDane As Long Dim arWks As Variant: arWks = VBA.Array("Data", "Data2", "Data3", "Data4", "Data5") Dim i As Integer Dim RngS As Excel.Range Dim RngCrit As Excel.Range Set xlForm = ThisWorkbook.Worksheets("Search") With xlForm ostForm = Last(.Columns("A:J")) If ostForm > 8 Then .Range("A8:J" & ostForm).Clear Set RngCrit = .Range("A1").CurrentRegion End With Application.ScreenUpdating = False For i = 0 To UBound(arWks) ostForm = Last(xlForm.Columns("A:J")) + 1 Set RngS = ThisWorkbook.Worksheets(CStr(arWks(i))).Range("A2").CurrentRegion RngS.AdvancedFilter Action:=xlFilterCopy, _ CriteriaRange:=RngCrit, _ CopyToRange:=xlForm.Range("A" & ostForm), _ Unique:=False xlForm.Rows(ostForm).Delete Next Application.ScreenUpdating = True Set RngS = Nothing Set xlForm = Nothing End Sub
Kiluk
Do you mean multiple sheets in multiple workbooks?
To best describe or illustrate your problem you would be better off attaching a dummy workbook, the workbook should contain the same structure and some dummy data of the same type as the type you have in your real workbook - so, if a cell contains numbers & letters in this format abc-123 then that should be reflected in the dummy workbook. Don't upload a picture when you have a workbook question. None of us is inclined to recreate your data. Upload the workbook and manually add an 'after' situation so that we can see what you expect. In addition clearly explain how you get the results..
To attach a file to your post, you need to be using the main 'New Post' or 'New Thread' page and not 'Quick Reply'.
To use the main 'New Post' page, click the 'Post Reply' button in the relevant thread.
On this page, below the message box, you will find a button labelled 'Manage Attachments'.
Clicking this button will open a new window for uploading attachments.
You can upload an attachment either from your computer or from another URL by using the appropriate box on this page.
Alternatively you can click the Attachment Icon to open this page.
To upload a file from your computer, click the 'Browse' button and locate the file.
To upload a file from another URL, enter the full URL for the file in the second box on this page.
Once you have completed one of the boxes, click 'Upload'.
Once the upload is completed the file name will appear below the input boxes in this window.
You can then close the window to return to the new post screen.
Hope that helps.
RoyUK
--------
If you are pleased with a member's answer then use the Star icon to rate it, if you are pleased enough to part with cash consider a donation to Children in Need
For Excel Tips & Solutions, free examples and tutorials why not check out my downloads
New members please read & follow the Forum Rules
Remember to mark your questions Solved and rate the answer(s)
Of course you're right.
I added attachments with sample data and files to search.
The file "search" and two data files.
I would like to file a macro in the file "search" searched other data files and focused search results in a worksheet
so how does it work in a workbook.
kiluk
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks