Skip to main content

All Questions

Tagged with
Filter by
Sorted by
Tagged with
2 votes
1 answer
183 views

Searching an entire workbook for keywords and then printing the results on another worksheet

I made a search page at the beginning of a work book. This page has a drop down that allows you to choose what category to search in, then you type your phrase or keyword into the search box and it ...
Caleb Sutton's user avatar
0 votes
1 answer
897 views

Speed up search/replace in VBA Word

I have a word document with 450 pages (and growing) in witch I make a search and replace (linking referencies) after inserting new text. Unfortunately this procedure is very slow. Have you any ...
Simon's user avatar
  • 1
2 votes
1 answer
72 views

Show all full/partial search matches in the first worksheet from other worksheets

Search and display all instances of a full/partial match in the first worksheet from all the other worksheets in the workbook after running a macro to clear formatting of previous search results. I ...
ShaunHill's user avatar
2 votes
2 answers
134 views

Search through each file in a directory, list number of instances of searched string

I am trying to open each file listed in Sheet2 Column A, search for a string of text located in Sheet3 Cell B1, list the number of instances this string appears in each particular file in Sheet3, and ...
minnow1's user avatar
  • 21
6 votes
2 answers
2k views

Binary search a 2D array for multiple matching criteria fields

Here is what I came up with for a binary search of an array. It allows for searching one or many columns to match. It assumes that array being searched is sorted with the same sort priorities as the ...
Kevin Conner's user avatar
5 votes
1 answer
223 views

Determining whether a date is within a range

I am taking a user input which consists of a from date and a to date. Those dates are compared against 4 cells in a row - a post date, pause date, resume date, and a close date. My goal with this code ...
Brad Johansen's user avatar
8 votes
1 answer
7k views

Excel VBA binary search class module [closed]

I have a long list of sorted strings in a Workbook, and I have to find a lot of values in it. I was hoping to build a binary search Class Module that will find them for me faster than Excel's built-in ...
sgp667's user avatar
  • 181
11 votes
2 answers
14k views

Searching a Word Document from Excel

Today I created a script in Excel that migrates data from a specific Word document and copies a portion of it to a cell in Excel (the date to be specific). The file input is Last name, First Name, ...
slow_excellence's user avatar