Formula to move appropriate data to new sheet
Closed
shandiana
Posts
1
Registration date
Friday November 15, 2013
Status
Member
Last seen
November 15, 2013
-
Nov 15, 2013 at 08:39 PM
Kevin@Radstock Posts 42 Registration date Thursday January 31, 2013 Status Member Last seen April 26, 2014 - Nov 16, 2013 at 02:25 AM
Kevin@Radstock Posts 42 Registration date Thursday January 31, 2013 Status Member Last seen April 26, 2014 - Nov 16, 2013 at 02:25 AM
Related:
- Formula to move appropriate data to new sheet
- Google sheet right to left - Guide
- Number to words in excel formula - Guide
- Windows network commands cheat sheet - Guide
- Logitech formula vibration feedback wheel driver - Download - Drivers
- Tmobile data check - Guide
1 response
Kevin@Radstock
Posts
42
Registration date
Thursday January 31, 2013
Status
Member
Last seen
April 26, 2014
9
Nov 16, 2013 at 02:25 AM
Nov 16, 2013 at 02:25 AM
Hi
Assuming the the dates are on Sheet2!E1:E2000 including header and in Sheet2!F1:G2000 are the first and last names, including headers. For excel 2007<, try the following on Sheet1:
=IFERROR(INDEX(Sheet2!F$2:F$2000,SMALL(IF(Sheet2!$E$2:$E$2000<TODAY(),ROW(Sheet2!$E$2:$E$2000)-ROW(Sheet2!$E$1)),ROW(Sheet2!$E1))),"")
This is an array formula, CTRL + SHIFT + ENTER to commit. Copy across two cells and down.
And for Excel 2010>
=IFERROR(INDEX(Sheet2!F$2:F$2000,AGGREGATE(15,6,ROW(Sheet2!$E$2:$E$2000)-ROW(Sheet2!$E$1)/(Sheet2!$E$2:$E$2000<TODAY()),ROW(Sheet2!$E1))),"")
Non array formula, just enter, copy across 2 cells and down.
Kevin
Assuming the the dates are on Sheet2!E1:E2000 including header and in Sheet2!F1:G2000 are the first and last names, including headers. For excel 2007<, try the following on Sheet1:
=IFERROR(INDEX(Sheet2!F$2:F$2000,SMALL(IF(Sheet2!$E$2:$E$2000<TODAY(),ROW(Sheet2!$E$2:$E$2000)-ROW(Sheet2!$E$1)),ROW(Sheet2!$E1))),"")
This is an array formula, CTRL + SHIFT + ENTER to commit. Copy across two cells and down.
And for Excel 2010>
=IFERROR(INDEX(Sheet2!F$2:F$2000,AGGREGATE(15,6,ROW(Sheet2!$E$2:$E$2000)-ROW(Sheet2!$E$1)/(Sheet2!$E$2:$E$2000<TODAY()),ROW(Sheet2!$E1))),"")
Non array formula, just enter, copy across 2 cells and down.
Kevin