Date Search

  • Thread starter Thread starter Chey
  • Start date Start date
C

Chey

I hope I explain this right.
In a sheet I want a date field that I can type in and a command button that
will pull from 12 spreadsheets Names, OTIS number and Release Date.
I know how to create a command button I am just unsure of the code. Right
now I am working with 3 sheets but will be adding more later.

Thanks
Cheyenne
 
Basic structure idea:

Dim MyValue as String

MyValue = Range("a2").value
For each worksheet in 'specificy range
'apply authofilter, search criteria based on MyValue
'Select data you want
Selection.Copy
'Return to home sheet, find first empty row
ActiveSheet.Paste
Next Worksheet

Obviously this isn't a complete program, but hopefully it gives you some
idea as to where to start. A lot of it can be written simply by recording
yourself doing said actions.
 
I need some more help.

The cell that I type the date into is B1 on sheet Records
I want range W4:W75 (for right now) on sheet ACC.

On the records sheet starting in A4 - A8 I want to have the fields from ACC
in this order
Name OBCIS Date of Arrest Charges? One Month F/U


Thanks
Cheyenne
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Print 8
Enter number in cell and have it divide by 4 10
vlookup with two data points. 3
Help with looking up information 3
Excel Import Comments 3
Excel Excel Help with variables 0
LOOKUP function between two dates in Excel 2007 6
Command code 2

Back
Top