Sep 13 2024 10:34 AM
Trying to pull the Delivery # for all the Customers in the list in Column J
This formula doesnt appear to be working in any fashion, tried a few others and i'm not making any progress.
=UNIQUE(FILTER('OB Summary'!B:B,'OB Summary'!L:L="DONALDSON"))
Sep 13 2024 11:05 AM
@Rodney2485 Not sure what you haven mind. The "OB Summary" sheet is empty in the file you attached.
Sep 13 2024 11:20 AM
Updated file.
Sorry for attaching the wrong one.
Sep 13 2024 11:54 AM
I this better?
=UNIQUE(FILTER('OB Summary'!B:B, ISNUMBER(SEARCH("DONALDSON", 'OB Summary'!L:L))))
Sep 13 2024 11:59 AM
Sep 13 2024 12:21 PM
So you want to copy the OB Summary data to Sheet1? Copy/Paste should do that.
Sep 13 2024 12:24 PM
Sep 13 2024 02:21 PM
Sep 14 2024 03:03 AM
Sep 14 2024 03:46 AM
SolutionUse IFERROR:
=IFERROR(CHOOSECOLS(FILTER('OB Summary'!B2:Z1000, BYROW('OB Summary'!L2:L1000, LAMBDA(r, OR(ISNUMBER(XMATCH($J$1:$J$11&"*", r, 2)))))), 1, 2, 4, 11, 14, 6, 8, 20), "")
Sep 14 2024 03:46 AM
SolutionUse IFERROR:
=IFERROR(CHOOSECOLS(FILTER('OB Summary'!B2:Z1000, BYROW('OB Summary'!L2:L1000, LAMBDA(r, OR(ISNUMBER(XMATCH($J$1:$J$11&"*", r, 2)))))), 1, 2, 4, 11, 14, 6, 8, 20), "")