M
Mike Lewis
Hi Marcy,
One way - create two cells that show the upper and lower
date interval, (something like: =now()+14)
Once these are established, create the auto filter, and
then a macro like this will show the desired records.
Sub Button4_Click()
Dim up, low
low = Range("e3")
up = Range("e2")
Selection.AutoFilter Field:=1, Criteria1:=">" & low,
Operator:=xlAnd, Criteria2:="<" & up
End Sub
I am not much of a VBA guy, so there may be a better way.
Good Luck
Mike
A) and their respective details (A:Z) for week(s) ending
7/16 and 7/23.
One way - create two cells that show the upper and lower
date interval, (something like: =now()+14)
Once these are established, create the auto filter, and
then a macro like this will show the desired records.
Sub Button4_Click()
Dim up, low
low = Range("e3")
up = Range("e2")
Selection.AutoFilter Field:=1, Criteria1:=">" & low,
Operator:=xlAnd, Criteria2:="<" & up
End Sub
I am not much of a VBA guy, so there may be a better way.
Good Luck
Mike
row# is ever changing, as new data is entered).-----Original Message-----
Good morning,all--
Can you please tell me if this would be possible?
I have a s/s with the column titles: A1:Z1
Data is entered in rows A2 thru Z646. (however, the last
(7/6), I would lke the results to include all PO's (columnColumn F is the delivery DUE date.
What I would like to be able to do is sort for a two-week period (from date of inquiry).
For example, if I were to do this filter/sort today
A) and their respective details (A:Z) for week(s) ending
7/16 and 7/23.