
Originally Posted by
KampKounslr
........ the problem that I am running into is that the current formula will find the first result of that floorplan but then I need the second field to find a different apartment of the same floorplan. Not sure how to get it to differentiate the results without the data already being sorted.
Have an approach which will yield this array of matched rows for Community Info $F$3 (524 Sq Ft) against floor plans in column B of Paste Availability Here. There are six of them.
{29;32;73;76;79;82;"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";"";""}
Designating which of the 524 sq ft floor plans you want can be done with SMALL. Here's the base formula for that.
Formula:
=IFERROR(SMALL(IF(IFERROR(MATCH(--TRIM(LEFT('Paste Availability Here'!$B$1:$B$200,3)),'Community Info'!$F$3,0),0),ROW($1:$200)),ROW($1:$200))-1,"")
To locate say the 3rd one on the list:
Formula:
=INDEX('Paste Availability Here'!$A$1:$A$200,SMALL(IFERROR(SMALL(IF(IFERROR(MATCH(--TRIM(LEFT('Paste Availability Here'!$B$1:$B$200,3)),'Community Info'!$F$3,0),0),ROW($1:$200)),ROW($1:$200))-1,""),3))
To locate price with same:
Formula:
=INDEX('Paste Availability Here'!$E$1:$E$200,SMALL(IFERROR(SMALL(IF(IFERROR(MATCH(--TRIM(LEFT('Paste Availability Here'!$B$1:$B$200,3)),'Community Info'!$F$3,0),0),ROW($1:$200)),ROW($1:$200))-1,""),3))+'Community Info'!$K$3
To locate available date:
Formula:
=INDEX('Paste Availability Here'!$J$1:$J$200,SMALL(IFERROR(SMALL(IF(IFERROR(MATCH(--TRIM(LEFT('Paste Availability Here'!$B$1:$B$200,3)),'Community Info'!$F$3,0),0),ROW($1:$200)),ROW($1:$200))-1,""),3))
These are all array entered....committed by holding Ctrl + Shift while hitting Enter. I put these in row 8 under "Saguaro: 1x1, 524 Sq. Ft., W/D included" section to coincide with the 3rd matching item in column B of Paste Availability Here.
File is attached.
Doe this help? If yes will need to modify MATCH criteria. This one forces the 3 left most characters of Sq ft. Will tweak to complete this part if this much does the job so far.
Bookmarks