Forum Discussion
KennyK360
Jul 17, 2023Copper Contributor
Searching multiple worksheets for different numbers simultaneously in Excel
Is it possible to search multiple worksheets for different numbers simultaneously in Excel? Using CTL-F isn't working for me. For example, can I search 10 different worksheets all at once for t...
peiyezhu
Jul 17, 2023Bronze Contributor
My suggestion is to consolidate all sheets to one table and the search by sql.
- KennyK360Jul 17, 2023Copper ContributorCould I use Microsoft Access instead?
- SergeiBaklanJul 18, 2023Diamond Contributor
If output is entire row in the range for which criteria is met, as variant that could be like
=LET( criteria, {137;142;154}, k, SEQUENCE(, ROWS(criteria), , 0), combine, VSTACK(Sheet1:Sheet3!$A$1:$Z$1500), FILTER( combine, BYROW( combine, LAMBDA(v, SUM( MMULT( k, --(v = criteria) ) ) ) ) ))assuming you are on 365
- KennyK360Jul 18, 2023Copper Contributor
The formula I am using is:
=LET(Num,C1,All,SEQUENCE(MIN(Num-21,1479), , 21),Factors,FILTER(All,MOD(Num,All)=0),TRANSPOSE(Factors))I'm trying to edit the formula to automatically delete all rows with #CALC! (in this case 8, 9 and 10)
Hopefully, this helps explain my problem. Thanks!