List of more then 3 months old Purchase Orders (PO)

Salamullah

Board Regular
Joined
Mar 28, 2011
Messages
221
I have a list of POs in sheet 1 contained 20 columns with its information and date is in column F.

I need list of more than 3 months old POs in Sheet 2 from row 2, in A1 Date with formula =TODAY().

Please help with formula

Sheet 1
Supplier No. Supplier Name PO No PO Type Date Amount Quantity
10001 DDD 12 Z 01/01/19 24,000 24
10002 SSS 13 Z 01/03/18 23,000 10
10001 DDD 14 Z 31/05/19 25,000 20
10002 SSS 15 R 14/10/17 14,000 30
10003 EEE 34 R 23/04/19 23,000 30

Sheet 2
01/06/2019
10001 DDD 12 Z 01/01/19 24,000 24
10002 SSS 13 Z 01/03/18 23,000 10
10002 SSS 15 R 14/10/17 14,000 30
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
It's difficult to tell which heading goes with which data item.
 
Upvote 0
If I figured it out, you could use this formula filled down and across:

Code:
=IF(Sheet1!$E2<=Sheet1!$A$1-3*31,Sheet1!A2,"")

Then, filter based on column A for non-blanks.

HTH
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,641
Messages
6,120,695
Members
448,979
Latest member
DET4492

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top