Forum Discussion
Filter with Multiple Criteria
- Apr 02, 2025
Do you want to filter on Start Ship Date (column I) being today? If so:
=UNIQUE(CHOOSECOLS(FILTER('OB Summary Update'!A2:J1000,('OB Summary Update'!I2:I1000=TODAY())*('OB Summary Update'!J2:J1000="FORD")), 2, 10))
The result will spill to 2 columns and as many rows as needed.
This mostly works; however I want the following columns to populate "1,2,3,4,5,7,9,12,14,15,24,23" seems like once I go pass column 9, I get a #value error
=UNIQUE(CHOOSECOLS(FILTER('OB Summary Update'!A2:J5000,('OB Summary Update'!I2:I5000=TODAY())*('OB Summary Update'!J2:J5000="FORD")),1, 2,3,4,5,7,9,12,14,15,24,23))
Add more columns to the range to be filtered:
=UNIQUE(CHOOSECOLS(FILTER('OB Summary Update'!A2:Z5000,('OB Summary Update'!I2:I5000=TODAY())*('OB Summary Update'!J2:J5000="FORD")),1, 2,3,4,5,7,9,12,14,15,24,23))
- Rodney2485Apr 03, 2025Brass Contributor
Is there a way to use this to filter out specific Ship Via's as well?
For example, I want to only show FDXG and UPSG shipping today.
- HansVogelaarApr 03, 2025MVP
Yes:
=UNIQUE(CHOOSECOLS(FILTER('OB Summary Update'!A2:Z5000,('OB Summary Update'!I2:I5000=TODAY())*('OB Summary Update'!J2:J5000="FORD")*(('OB Summary Update'!E2:E5000="FDXG")+('OB Summary Update'!E2:E5000="UPSG"))),1, 2,3,4,5,7,9,12,14,15,24,23))
- Rodney2485Apr 04, 2025Brass Contributor
You've been a phenomenal help.
- Rodney2485Apr 03, 2025Brass Contributor
I'm going to blame not seeing that on not having my coffee this morning.
Thank you!