SFCChase
Board Regular
- Joined
- Jun 25, 2013
- Messages
- 107
- Office Version
- 2016
- Platform
- Windows
Is there a limitation to the size of table that can be index/matched?
I have a workbook with multiple tabs. 1 tab is solely composed of tables of data. Another tab (labeled ACFT Table) uses entered data to run a search of the data tables. The following formula works perfectly and returns correct results
=IF(F8="M",INDEX('ACFT Table'!$C$4:$L$32,MATCH($H8,'ACFT Table'!$B$4:$B$32,0),MATCH(E8,'ACFT Table'!$C$2:$L$2,1)),IF(F8="","","")))
When I change the search variables and table locations I get an #NA error.
=IF(F8="M",INDEX('ACFT Table'!$O$4:$X$128,MATCH($H8,'ACFT Table'!$N$4:$N$128,0),MATCH(E8,'ACFT Table'!$N$2:$X$2,1)),IF(F8="","","")))
I have found that if i enter data between lines 4 and 68 i will get a result, but anything past 69 gives me the #NA error.
Any suggestions would be great.
I have a workbook with multiple tabs. 1 tab is solely composed of tables of data. Another tab (labeled ACFT Table) uses entered data to run a search of the data tables. The following formula works perfectly and returns correct results
=IF(F8="M",INDEX('ACFT Table'!$C$4:$L$32,MATCH($H8,'ACFT Table'!$B$4:$B$32,0),MATCH(E8,'ACFT Table'!$C$2:$L$2,1)),IF(F8="","","")))
When I change the search variables and table locations I get an #NA error.
=IF(F8="M",INDEX('ACFT Table'!$O$4:$X$128,MATCH($H8,'ACFT Table'!$N$4:$N$128,0),MATCH(E8,'ACFT Table'!$N$2:$X$2,1)),IF(F8="","","")))
I have found that if i enter data between lines 4 and 68 i will get a result, but anything past 69 gives me the #NA error.
Any suggestions would be great.