john316swan
Board Regular
- Joined
- Oct 13, 2016
- Messages
- 66
- Office Version
- 2019
- Platform
- Windows
Trying to figure out an array formula that would pull all data between 2 dates. Here is what I started with:
{=INDEX(Loan_ID,MATCH(1,((Transfer_Dates>=Begin_Date)*(Transfer_Dates<=End_Date)),0))}
But that only returned the top value. Then I tried:
{=INDEX(Loan_ID,SMALL(IF(AND(Transfer_Dates>=Begin_Date,Transfer_Dates<=End_Date),ROW(Transfer_Dates)),ROWS(A$3:A3)))}
But that STILL only returned the top value (with subsequent values giving the #NUM! error) What am I doing wrong? Thanks for your help!!!
{=INDEX(Loan_ID,MATCH(1,((Transfer_Dates>=Begin_Date)*(Transfer_Dates<=End_Date)),0))}
But that only returned the top value. Then I tried:
{=INDEX(Loan_ID,SMALL(IF(AND(Transfer_Dates>=Begin_Date,Transfer_Dates<=End_Date),ROW(Transfer_Dates)),ROWS(A$3:A3)))}
But that STILL only returned the top value (with subsequent values giving the #NUM! error) What am I doing wrong? Thanks for your help!!!
Last edited: