Amendment To Formula For Anything On Or Before Date in A1

surkdidat

Well-known Member
Joined
Oct 1, 2011
Messages
582
Office Version
  1. 365
I have the following formula which is dragged down to show every instance of the value in A1.

What I would like to do is amend the formula, so that it brings up anything on or before the date in A1 (rather than just the date displayed)

Excel Formula:
=INDEX('In Progress'!$A$2:$A$198,SMALL(IF(IFERROR(FIND($A$1,'In Progress'!$H$2:$H$198),0)>0,ROW('In Progress'!$H$2:$H$198)-ROW($A$2)+1),ROW(1:1)))

Thank you
 

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
Hi,
You could test
Excel Formula:
=INDEX('In Progress'!$A$2:$A$198,SMALL(IF('In Progress'!$H$2:$H$198<=$A$1,ROW('In Progress'!$H$2:$H$198)-ROW($A$2)+1),ROW(1:1)))
 
Upvote 1
Solution

Forum statistics

Threads
1,215,045
Messages
6,122,840
Members
449,096
Latest member
Erald

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