Noxqss38242
Board Regular
- Joined
- Sep 15, 2017
- Messages
- 225
- Office Version
- 2016
Here is the data:
Here is a sample of a past report:
Here is what I want to accomplish:
I want cells A12:A30 to have a formula that automatically pulls the "trailer numbers" located on the Inactive tab in column K that matches the criteria: S = False, M =>20, B="James Bond", Q = (everything except "LOADED")
I want cells G13:G30 to have a formula that automatically pulls the "trailer numbers" located on the Inactive tab in column K that matches the same criteria as before but Q = "LOADED"
From there I can just use VLOOKUP for the rest of the info I need.
Any help would be much appreciated.
Inactive Trailers Report (TRLPOD2).xlsx | |||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
A | B | C | K | L | M | N | Q | R | S | ||||||||||||
1210 | IL-CHI | James Bond | IL | 195922 | 9/11 | 1 | 1 | AVAILABLE | 3MDKLB | FALSE | |||||||||||
1211 | IL-CHI | James Bond | IL | 634284 | 9/11 | 1 | 1 | AVAILABLE | 3MDKLB | FALSE | |||||||||||
1212 | IL-CHI | James Bond | IL | 175228 | 8/21 | 22 | 22 | O/S ON THE | ABDP | FALSE | |||||||||||
1213 | IL-CHI | James Bond | IL | 237337 | 8/30 | 13 | 13 | AVAILABLE | ABDP | FALSE | |||||||||||
1214 | IL-CHI | James Bond | IL | 634381 | 8/25 | 18 | 18 | AVAILABLE | CEDLW | FALSE | |||||||||||
1215 | IL-CHI | James Bond | IL | 634563 | 8/31 | 12 | 12 | AVAILABLE | CEDLW | FALSE | |||||||||||
1216 | IL-CHI | James Bond | IL | 634528 | 9/01 | 11 | 11 | AVAILABLE | CEDLW | FALSE | |||||||||||
1217 | IL-CHI | James Bond | IL | 195853 | 8/21 | 22 | 22 | AVAILABLE | CHWLIL | FALSE | |||||||||||
1218 | IL-CHI | James Bond | IL | 175369 | 9/05 | 7 | 7 | O/S ON THE | CHWLIL | FALSE | |||||||||||
1219 | IL-CHI | James Bond | IL | 175362 | 9/08 | 4 | 4 | AVAILABLE | DTJO | FALSE | |||||||||||
1220 | IL-CHI | James Bond | IL | 185431 | 9/08 | 4 | 4 | DISPATCHED | 20669 | TRUE | |||||||||||
1221 | IL-CHI | James Bond | IL | 635064 | 9/08 | 4 | 4 | AVAILABLE | DTJO | FALSE | |||||||||||
1222 | IL-CHI | James Bond | IL | 634470 | 9/12 | 0 | 0 | AVAILABLE | DTJO | FALSE | |||||||||||
Inactive Trailers Report (TRLPO |
Cell Formulas | ||
---|---|---|
Range | Formula | |
Q1210:Q1222 | Q1210 | =VLOOKUP(K1210,Sheet1!$A:$I,2,0) |
R1210:R1222 | R1210 | =VLOOKUP(K1210,Sheet1!$A:$I,9,0) |
S1210:S1222 | S1210 | =ISNUMBER(R1210) |
Here is a sample of a past report:
Inactive Trailers Report (TRLPOD2).xlsx | |||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
A | B | C | D | E | F | G | H | I | J | K | |||
1 | Inactive Trailer Report for: | James Bond | 9/13/2023 | ||||||||||
2 | |||||||||||||
3 | |||||||||||||
4 | # Trailers over 10 days (10-20) | 27 | |||||||||||
5 | |||||||||||||
6 | # Trailers over 21 days (21+) | 5 | |||||||||||
7 | |||||||||||||
8 | Total: | 32 | |||||||||||
9 | |||||||||||||
10 | |||||||||||||
11 | Empty Trailers over 20 days: | Customer/Shop | City/State | Loc. Code | Reason for Idle | Loaded Trailers over 20 days: | |||||||
12 | 633854 | Shop | CR IA | STTRCR | Still in shop as shop is backed logged | Trailer# | Where (customer) | City/State | Customer Code | Explaination from customer | |||
13 | 175126 | Shop | CALWI | MFMILW | In shop | 216771 | Customer | ROMMI | RETROM | still loaded. | |||
14 | 634219 | Customer | CINOH | PCCIOH | Tmove set to drop in Indy for retirment | ||||||||
15 | 634577 | Shop | LIMOH | KNLLIM | In shop | ||||||||
16 | |||||||||||||
Sheet2 |
Cell Formulas | ||
---|---|---|
Range | Formula | |
E1 | E1 | =TODAY() |
C8 | C8 | =SUM(C4,C6) |
Here is what I want to accomplish:
I want cells A12:A30 to have a formula that automatically pulls the "trailer numbers" located on the Inactive tab in column K that matches the criteria: S = False, M =>20, B="James Bond", Q = (everything except "LOADED")
I want cells G13:G30 to have a formula that automatically pulls the "trailer numbers" located on the Inactive tab in column K that matches the same criteria as before but Q = "LOADED"
From there I can just use VLOOKUP for the rest of the info I need.
Any help would be much appreciated.