Blanchetdb
Board Regular
- Joined
- Jul 31, 2018
- Messages
- 161
- Office Version
- 2016
- Platform
- Windows
Hi,
I created comboboxes with dropdown lists
I presently have formulas that searches through a long list (7000) of names and then once found information is auto-populated in identified cells
This is the search mechanism I presently have in place
In Column K:
=--ISNUMBER(SEARCH(Sheet3!$A$10,Sheet15!A2)) the next formula
In Column L:
=IF(K2=1,COUNTIF($K$2:$K2,1,"")
In Column M:
=IFERROR(INDEX($A$2:$A$7000,MATCH(ROWS($L$2:$L2),$L$2:$L$7000,0)),"")
the ComboBoxes provide a searchable dropdown list to choose from but the process is delayed
Can VBA speed up the process?
I created comboboxes with dropdown lists
I presently have formulas that searches through a long list (7000) of names and then once found information is auto-populated in identified cells
This is the search mechanism I presently have in place
In Column K:
=--ISNUMBER(SEARCH(Sheet3!$A$10,Sheet15!A2)) the next formula
In Column L:
=IF(K2=1,COUNTIF($K$2:$K2,1,"")
In Column M:
=IFERROR(INDEX($A$2:$A$7000,MATCH(ROWS($L$2:$L2),$L$2:$L$7000,0)),"")
the ComboBoxes provide a searchable dropdown list to choose from but the process is delayed
Can VBA speed up the process?