thewiseguy
Well-known Member
- Joined
- May 23, 2005
- Messages
- 1,015
- Office Version
- 365
- Platform
- Windows
Hi All,
Is it possible to combine these 2 SORT & FILTER formulas?? I am trying to have my output data on 1 sheet, coming from sorting and filtering from 2 different columns of data.
Any help is appreciated!!
Is it possible to combine these 2 SORT & FILTER formulas?? I am trying to have my output data on 1 sheet, coming from sorting and filtering from 2 different columns of data.
20201117-Bob.2020.IntNFRtr.v3 - WIP.xlsx | |||||
---|---|---|---|---|---|
A | B | C | |||
1 | Category | Manufacturer | Item | ||
2 | Flat Panel | ASD | ASD 22W LED Flat Panel 2x2 MV 4K Recessed | ||
BOM_FixLamps |
Cell Formulas | ||
---|---|---|
Range | Formula | |
A2 | A2 | =IFERROR(VLOOKUP(C2,TableProposed,3,0),"") |
B2 | B2 | =IFERROR(LEFT(C2,FIND(" ",C2)-1),"") |
C2:C23 | C2 | =SORT(UNIQUE(FILTER(Input!Z4:Z503,(Input!Z4:Z503 <>"")*(Input!Z4:Z503<>0),FALSE))) |
Dynamic array formulas. |
20201117-Bob.2020.IntNFRtr.v3 - WIP.xlsx | |||||
---|---|---|---|---|---|
T | U | V | |||
1 | Category | Manufacturer | Item | ||
2 | Rental Equip | Ahern | Ahern W LED Rental Equip Scissor lift, 19', 32" Electric - Week | ||
BOM_FixLamps |
Cell Formulas | ||
---|---|---|
Range | Formula | |
T2 | T2 | =IFERROR(VLOOKUP(V2,TableProposed,3,0),"") |
U2 | U2 | =IFERROR(LEFT(V2,FIND(" ",V2)-1),"") |
V2:V3 | V2 | =SORT(UNIQUE(FILTER(Input!W4:W503,(Input!W4:W503 <>"")*(Input!W4:W503<>0),FALSE))) |
Dynamic array formulas. |
Any help is appreciated!!