Filter formula change in days

Pibsandsquibs

New Member
Joined
Aug 18, 2021
Messages
17
Office Version
  1. 365
Platform
  1. Windows
Hi

I have a spreadsheet where one column shows changes in number of days of the date the order is expected to arrive. So yesterday it could have said the arrival date was 01/10/24 but today it is saying 29/09/24 so has come forward 2 days and the changes in number of days is -2.

As this spreadsheet looks at all the orders is there a formula to filter out all the changes in days whether they are -3, -2, -1, 1, 2, 3 (obviously could be more but you get the idea). So I want something that excludes all the orders where the date hasn't changed. i.e 0.

I am using the formula to get everything that is a positive change, but can't workout how to combine to include the changes that are -1, -2,-3.

=FILTER(A2:P7,P2:P7>=1)

1726745610386.png
 

Excel Facts

What is =ROMAN(40) in Excel?
The Roman numeral for 40 is XL. Bill "MrExcel" Jelen's 40th book was called MrExcel XL.
Hi,

for multiple criteria you use the asterisk * between them and bracket each like thus :

=FILTER(A2:P7,(P2:P7>=1)*(P2:P7<>0))

Hope that helps
Rob
 
Upvote 0
If you want to exclude the rows where there was no daily change (that is column P = 0) try:

Excel Formula:
=FILTER(A2:P7,P2:P7<>0)
 
Upvote 0

Forum statistics

Threads
1,221,537
Messages
6,160,394
Members
451,645
Latest member
hglymph

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