LET/VSTACK/FILTER question

Status
Not open for further replies.

Jedi Master

Board Regular
Joined
Jun 10, 2024
Messages
70
Office Version
  1. 365
Platform
  1. Windows
I have pasted 5 mini sheets with data. In the 6th sheet, I have a formula that combines the data from the previous 5, removing blanks. Column "L" then filters column A for only unique values from the newly created array and sums the corresponding column D and column J values in columns M and N. I need a little help with on sheet 6, combining what ive done so far into a single array with the unique values from column M (or A) keeping all values in columns (B,C,E,F,G,H,I, and K), and replacing values in D and J with values in M and N (M for D, and N for J). Unless there is a better way to do this?
I need to basically create a filtered array, and then filter it again, adding the sum total values in both columns d and J to a unique original in column A. Im sorry if this is confusing, but that is why I am reaching out for help. Any assistance would be greatly appreciated!


ChatGPT Test.xlsx
ABCDEFGHIJK
48MACHINES
49ItemCategoryUse Daily or HourlyDays or Hours UsedRate Adj %Daily RateSub-TotalFuel GPHIn Use HoursTotal Est Fuel
504x4 Crew TruckPickup TruckDaily3← Enter Days115%$115.00$345.002.6615.6
514x4 Stakebed TruckFlatbed TruckDaily3← Enter Days120%$156.00$468.002612
52   100%   0 
53   100%   0 
54Kubota KX080EXCAVATORDaily3← Enter Days100%$656.25$1,968.7532472
55Kubota SVL95Skid LoaderDaily3← Enter Days100%$487.50$1,462.5032472
56Compactor, Soil - Vibratory Double Drum Roller 40-49"Compactor, Soil - Vibratory Double Drum Roller 40-49"Daily3← Enter Days100%$278.00$834.001.51218
57   100%   0 
58   100%   0 
59Attachment - BroomAttachment - BroomDaily3← Enter Days100%$84.30$252.90000
60Morooka LTracked carrierDaily3← Enter Days100%$890.00$2,670.0031854
61PORTA-JOHN (Pair)Portable Toilets (PAIR)Daily3← Enter Days100%$35.00$105.00000
62   100%    
63   100%    
64   100%    
65   100%    
66   100%    
67   100%    
68   100%    
69   100%    
70   100%    
71   100%    
72   100%    
73   100%    
Tab1
Cell Formulas
RangeFormula
B50:B73B50=IF(ISBLANK(A50),"",INDEX('[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!D:D,MATCH(A50,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!C:C,0)))
C50:C72C50=IF(ISBLANK($A50),"",IF($B$20="TC Energy",VLOOKUP($A50,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!$C:$G,5,0),"DWD Std Daily"))
C73C73=IF(ISBLANK($A73),"",IF($B$20="TC Energy",VLOOKUP($A73,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!$A:$G,7,0),"DWD Std Daily"))
G50:G73G50=IF(ISBLANK(A50),"",F50*VLOOKUP(A50,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!C:L,'Tab1'!$U$49,0))
H50:H73H50=IF(ISBLANK($A50),"",F50*($D50*VLOOKUP($A50,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!C:L,'Tab1'!$U$49,0)))
I50:I73I50=IF(ISBLANK(A50),"",VLOOKUP(A50,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!C:T,18,0))
E50:E73E50=IF(ISBLANK(A50),"",IF(C50="dwd Std Daily","← Enter Days",IF(C50="Daily","← Enter Days",IF(C50="Hourly","← Enter Hours","Fix Equip List"))))
K50:K73K50=IF(ISBLANK(A50),"",(I50*J50))
Cells with Conditional Formatting
CellConditionCell FormatStop If True
E50:E73Cell Valuecontains "Hours"textNO
E50:E73Cell Valuecontains "Days"textNO
E50:E73Cell Valuecontains "Fix"textNO
H50:H73Cell Value=0textNO
 

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
I have pasted 5 mini sheets with data. In the 6th sheet, I have a formula that combines the data from the previous 5, removing blanks. Column "L" then filters column A for only unique values from the newly created array and sums the corresponding column D and column J values in columns M and N. I need a little help with on sheet 6, combining what ive done so far into a single array with the unique values from column M (or A) keeping all values in columns (B,C,E,F,G,H,I, and K), and replacing values in D and J with values in M and N (M for D, and N for J). Unless there is a better way to do this?
I need to basically create a filtered array, and then filter it again, adding the sum total values in both columns d and J to a unique original in column A. Im sorry if this is confusing, but that is why I am reaching out for help. Any assistance would be greatly appreciated!


ChatGPT Test.xlsx
ABCDEFGHIJK
48MACHINES
49ItemCategoryUse Daily or HourlyDays or Hours UsedRate Adj %Daily RateSub-TotalFuel GPHIn Use HoursTotal Est Fuel
504x4 Crew TruckPickup TruckDaily3← Enter Days115%$115.00$345.002.6615.6
514x4 Stakebed TruckFlatbed TruckDaily3← Enter Days120%$156.00$468.002612
52   100%   0 
53   100%   0 
54Kubota KX080EXCAVATORDaily3← Enter Days100%$656.25$1,968.7532472
55Kubota SVL95Skid LoaderDaily3← Enter Days100%$487.50$1,462.5032472
56Compactor, Soil - Vibratory Double Drum Roller 40-49"Compactor, Soil - Vibratory Double Drum Roller 40-49"Daily3← Enter Days100%$278.00$834.001.51218
57   100%   0 
58   100%   0 
59Attachment - BroomAttachment - BroomDaily3← Enter Days100%$84.30$252.90000
60Morooka LTracked carrierDaily3← Enter Days100%$890.00$2,670.0031854
61PORTA-JOHN (Pair)Portable Toilets (PAIR)Daily3← Enter Days100%$35.00$105.00000
62   100%    
63   100%    
64   100%    
65   100%    
66   100%    
67   100%    
68   100%    
69   100%    
70   100%    
71   100%    
72   100%    
73   100%    
Tab1
Cell Formulas
RangeFormula
B50:B73B50=IF(ISBLANK(A50),"",INDEX('[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!D:D,MATCH(A50,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!C:C,0)))
C50:C72C50=IF(ISBLANK($A50),"",IF($B$20="TC Energy",VLOOKUP($A50,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!$C:$G,5,0),"DWD Std Daily"))
C73C73=IF(ISBLANK($A73),"",IF($B$20="TC Energy",VLOOKUP($A73,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!$A:$G,7,0),"DWD Std Daily"))
G50:G73G50=IF(ISBLANK(A50),"",F50*VLOOKUP(A50,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!C:L,'Tab1'!$U$49,0))
H50:H73H50=IF(ISBLANK($A50),"",F50*($D50*VLOOKUP($A50,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!C:L,'Tab1'!$U$49,0)))
I50:I73I50=IF(ISBLANK(A50),"",VLOOKUP(A50,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!C:T,18,0))
E50:E73E50=IF(ISBLANK(A50),"",IF(C50="dwd Std Daily","← Enter Days",IF(C50="Daily","← Enter Days",IF(C50="Hourly","← Enter Hours","Fix Equip List"))))
K50:K73K50=IF(ISBLANK(A50),"",(I50*J50))
Cells with Conditional Formatting
CellConditionCell FormatStop If True
E50:E73Cell Valuecontains "Hours"textNO
E50:E73Cell Valuecontains "Days"textNO
E50:E73Cell Valuecontains "Fix"textNO
H50:H73Cell Value=0textNO
ChatGPT Test.xlsx
ABCDEFGHIJK
48MACHINES
49ItemCategoryUse Daily or HourlyDays or Hours UsedRate Adj %Daily RateSub-TotalFuel GPHIn Use HoursTotal Est Fuel
504x4 Crew TruckPickup TruckDaily1← Enter Days115%$115.00$115.002.625.2
514x4 Stakebed TruckFlatbed TruckDaily1← Enter Days120%$156.00$156.00224
52   100%   0 
53   100%   0 
54Kubota KX080EXCAVATORDaily1← Enter Days100%$656.25$656.253824
55Kubota SVL95Skid LoaderDaily1← Enter Days100%$487.50$487.503824
56Compactor, Soil - Vibratory Double Drum Roller 40-49"Compactor, Soil - Vibratory Double Drum Roller 40-49"Daily1← Enter Days100%$278.00$278.001.5812
57Compactor, Soil - Vibratory Plate SMALL RENTALCompactor, Soil - Vibratory Plate SMALLDaily1← Enter Days100%$60.00$60.00188
58   100%   0 
59Attachment - BroomAttachment - BroomDaily1← Enter Days100%$84.30$84.30000
60Morooka LTracked carrierDaily1← Enter Days100%$890.00$890.003412
61PORTA-JOHN (Pair)Portable Toilets (PAIR)Daily1← Enter Days100%$35.00$35.00000
62   100%    
63   100%    
64   100%    
65   100%    
66   100%    
67   100%    
68   100%    
69   100%    
70   100%    
71   100%    
72   100%    
73   100%    
Tab2
Cell Formulas
RangeFormula
B50:B73B50=IF(ISBLANK(A50),"",INDEX('[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!D:D,MATCH(A50,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!C:C,0)))
C50:C72C50=IF(ISBLANK($A50),"",IF($B$20="TC Energy",VLOOKUP($A50,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!$C:$G,5,0),"DWD Std Daily"))
C73C73=IF(ISBLANK($A73),"",IF($B$20="TC Energy",VLOOKUP($A73,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!$A:$G,7,0),"DWD Std Daily"))
G50:G73G50=IF(ISBLANK(A50),"",F50*VLOOKUP(A50,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!C:L,'Tab2'!$U$49,0))
H50:H73H50=IF(ISBLANK($A50),"",F50*($D50*VLOOKUP($A50,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!C:L,'Tab2'!$U$49,0)))
I50:I73I50=IF(ISBLANK(A50),"",VLOOKUP(A50,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!C:T,18,0))
E50:E73E50=IF(ISBLANK(A50),"",IF(C50="dwd Std Daily","← Enter Days",IF(C50="Daily","← Enter Days",IF(C50="Hourly","← Enter Hours","Fix Equip List"))))
K50:K73K50=IF(ISBLANK(A50),"",(I50*J50))
Cells with Conditional Formatting
CellConditionCell FormatStop If True
E50:E73Cell Valuecontains "Hours"textNO
E50:E73Cell Valuecontains "Days"textNO
E50:E73Cell Valuecontains "Fix"textNO
H50:H73Cell Value=0textNO
 
Upvote 0
ChatGPT Test.xlsx
ABCDEFGHIJK
48MACHINES
49ItemCategoryUse Daily or HourlyDays or Hours UsedRate Adj %Daily RateSub-TotalFuel GPHIn Use HoursTotal Est Fuel
504x4 Crew TruckPickup TruckDaily1← Enter Days115%$115.00$115.002.625.2
514x4 Stakebed TruckFlatbed TruckDaily1← Enter Days120%$156.00$156.00224
52   100%   0 
53   100%   0 
54Kubota KX080EXCAVATORDaily1← Enter Days100%$656.25$656.253824
55Kubota SVL95Skid LoaderDaily1← Enter Days100%$487.50$487.503824
56Compactor, Soil - Vibratory Double Drum Roller 40-49"Compactor, Soil - Vibratory Double Drum Roller 40-49"Daily1← Enter Days100%$278.00$278.001.5812
57Compactor, Soil - Vibratory Plate SMALL RENTALCompactor, Soil - Vibratory Plate SMALLDaily1← Enter Days100%$60.00$60.00188
58   100%   0 
59Attachment - BroomAttachment - BroomDaily1← Enter Days100%$84.30$84.30000
60Morooka LTracked carrierDaily1← Enter Days100%$890.00$890.003412
61PORTA-JOHN (Pair)Portable Toilets (PAIR)Daily1← Enter Days100%$35.00$35.00000
62   100%    
63   100%    
64   100%    
65   100%    
66   100%    
67   100%    
68   100%    
69   100%    
70   100%    
71   100%    
72   100%    
73   100%    
Tab2
Cell Formulas
RangeFormula
B50:B73B50=IF(ISBLANK(A50),"",INDEX('[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!D:D,MATCH(A50,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!C:C,0)))
C50:C72C50=IF(ISBLANK($A50),"",IF($B$20="TC Energy",VLOOKUP($A50,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!$C:$G,5,0),"DWD Std Daily"))
C73C73=IF(ISBLANK($A73),"",IF($B$20="TC Energy",VLOOKUP($A73,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!$A:$G,7,0),"DWD Std Daily"))
G50:G73G50=IF(ISBLANK(A50),"",F50*VLOOKUP(A50,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!C:L,'Tab2'!$U$49,0))
H50:H73H50=IF(ISBLANK($A50),"",F50*($D50*VLOOKUP($A50,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!C:L,'Tab2'!$U$49,0)))
I50:I73I50=IF(ISBLANK(A50),"",VLOOKUP(A50,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!C:T,18,0))
E50:E73E50=IF(ISBLANK(A50),"",IF(C50="dwd Std Daily","← Enter Days",IF(C50="Daily","← Enter Days",IF(C50="Hourly","← Enter Hours","Fix Equip List"))))
K50:K73K50=IF(ISBLANK(A50),"",(I50*J50))
Cells with Conditional Formatting
CellConditionCell FormatStop If True
E50:E73Cell Valuecontains "Hours"textNO
E50:E73Cell Valuecontains "Days"textNO
E50:E73Cell Valuecontains "Fix"textNO
H50:H73Cell Value=0textNO
ChatGPT Test.xlsx
ABCDEFGHIJK
48MACHINES
49ItemCategoryUse Daily or HourlyDays or Hours UsedRate Adj %Daily RateSub-TotalFuel GPHIn Use HoursTotal Est Fuel
504x4 Crew TruckPickup TruckDaily2← Enter Days115%$115.00$230.002.6410.4
514x4 Stakebed TruckFlatbed TruckDaily2← Enter Days120%$156.00$312.00248
52   100%   0 
53   100%   0 
54Kubota KX080EXCAVATORDaily2← Enter Days100%$656.25$1,312.5031648
55Kubota SVL95Skid LoaderDaily2← Enter Days100%$487.50$975.0031648
56Compactor, Soil - Vibratory Double Drum Roller 40-49"Compactor, Soil - Vibratory Double Drum Roller 40-49"Daily1← Enter Days100%$278.00$278.001.569
57Compactor, Soil - Vibratory Plate SMALL RENTALCompactor, Soil - Vibratory Plate SMALLDaily1← Enter Days100%$60.00$60.00166
58   100%   0 
59Attachment - BroomAttachment - BroomDaily2← Enter Days100%$84.30$168.60000
60Morooka LTracked carrierDaily1← Enter Days100%$890.00$890.003824
61PORTA-JOHN (Pair)Portable Toilets (PAIR)Daily2← Enter Days100%$35.00$70.00000
62   100%    
63   100%    
64   100%    
65   100%    
66   100%    
67   100%    
68   100%    
69   100%    
70   100%    
71   100%    
72   100%    
73   100%    
Tab3
Cell Formulas
RangeFormula
B50:B73B50=IF(ISBLANK(A50),"",INDEX('[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!D:D,MATCH(A50,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!C:C,0)))
C50:C72C50=IF(ISBLANK($A50),"",IF($B$20="TC Energy",VLOOKUP($A50,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!$C:$G,5,0),"DWD Std Daily"))
C73C73=IF(ISBLANK($A73),"",IF($B$20="TC Energy",VLOOKUP($A73,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!$A:$G,7,0),"DWD Std Daily"))
G50:G73G50=IF(ISBLANK(A50),"",F50*VLOOKUP(A50,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!C:L,'Tab3'!$U$49,0))
H50:H73H50=IF(ISBLANK($A50),"",F50*($D50*VLOOKUP($A50,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!C:L,'Tab3'!$U$49,0)))
I50:I73I50=IF(ISBLANK(A50),"",VLOOKUP(A50,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!C:T,18,0))
E50:E73E50=IF(ISBLANK(A50),"",IF(C50="dwd Std Daily","← Enter Days",IF(C50="Daily","← Enter Days",IF(C50="Hourly","← Enter Hours","Fix Equip List"))))
K50:K73K50=IF(ISBLANK(A50),"",(I50*J50))
Cells with Conditional Formatting
CellConditionCell FormatStop If True
E50:E73Cell Valuecontains "Hours"textNO
E50:E73Cell Valuecontains "Days"textNO
E50:E73Cell Valuecontains "Fix"textNO
H50:H73Cell Value=0textNO
 
Upvote 0
ChatGPT Test.xlsx
ABCDEFGHIJK
48MACHINES
49ItemCategoryUse Daily or HourlyDays or Hours UsedRate Adj %Daily RateSub-TotalFuel GPHIn Use HoursTotal Est Fuel
504x4 Crew TruckPickup TruckDaily2← Enter Days115%$115.00$230.002.6410.4
514x4 Stakebed TruckFlatbed TruckDaily2← Enter Days120%$156.00$312.00248
52   100%   0 
53   100%   0 
54Kubota KX080EXCAVATORDaily2← Enter Days100%$656.25$1,312.5031648
55Kubota SVL95Skid LoaderDaily2← Enter Days100%$487.50$975.0031648
56Compactor, Soil - Vibratory Double Drum Roller 40-49"Compactor, Soil - Vibratory Double Drum Roller 40-49"Daily1← Enter Days100%$278.00$278.001.569
57Compactor, Soil - Vibratory Plate SMALL RENTALCompactor, Soil - Vibratory Plate SMALLDaily1← Enter Days100%$60.00$60.00166
58   100%   0 
59Attachment - BroomAttachment - BroomDaily2← Enter Days100%$84.30$168.60000
60Morooka LTracked carrierDaily1← Enter Days100%$890.00$890.003824
61PORTA-JOHN (Pair)Portable Toilets (PAIR)Daily2← Enter Days100%$35.00$70.00000
62   100%    
63   100%    
64   100%    
65   100%    
66   100%    
67   100%    
68   100%    
69   100%    
70   100%    
71   100%    
72   100%    
73   100%    
Tab3
Cell Formulas
RangeFormula
B50:B73B50=IF(ISBLANK(A50),"",INDEX('[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!D:D,MATCH(A50,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!C:C,0)))
C50:C72C50=IF(ISBLANK($A50),"",IF($B$20="TC Energy",VLOOKUP($A50,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!$C:$G,5,0),"DWD Std Daily"))
C73C73=IF(ISBLANK($A73),"",IF($B$20="TC Energy",VLOOKUP($A73,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!$A:$G,7,0),"DWD Std Daily"))
G50:G73G50=IF(ISBLANK(A50),"",F50*VLOOKUP(A50,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!C:L,'Tab3'!$U$49,0))
H50:H73H50=IF(ISBLANK($A50),"",F50*($D50*VLOOKUP($A50,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!C:L,'Tab3'!$U$49,0)))
I50:I73I50=IF(ISBLANK(A50),"",VLOOKUP(A50,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!C:T,18,0))
E50:E73E50=IF(ISBLANK(A50),"",IF(C50="dwd Std Daily","← Enter Days",IF(C50="Daily","← Enter Days",IF(C50="Hourly","← Enter Hours","Fix Equip List"))))
K50:K73K50=IF(ISBLANK(A50),"",(I50*J50))
Cells with Conditional Formatting
CellConditionCell FormatStop If True
E50:E73Cell Valuecontains "Hours"textNO
E50:E73Cell Valuecontains "Days"textNO
E50:E73Cell Valuecontains "Fix"textNO
H50:H73Cell Value=0textNO
ChatGPT Test.xlsx
ABCDEFGHIJK
48MACHINES
49ItemCategoryUse Daily or HourlyDays or Hours UsedRate Adj %Daily RateSub-TotalFuel GPHIn Use HoursTotal Est Fuel
504x4 Crew TruckPickup TruckDaily1← Enter Days115%$115.00$115.002.625.2
514x4 Stakebed TruckFlatbed TruckDaily1← Enter Days120%$156.00$156.00224
52   100%   0 
53   100%   0 
54Kubota KX080EXCAVATORDaily1← Enter Days100%$656.25$656.253824
55Kubota SVL95Skid LoaderDaily1← Enter Days100%$487.50$487.503824
56Compactor, Soil - Vibratory Double Drum Roller 40-49"Compactor, Soil - Vibratory Double Drum Roller 40-49"Daily1← Enter Days100%$278.00$278.001.569
57Compactor, Soil - Vibratory Plate SMALL RENTALCompactor, Soil - Vibratory Plate SMALLDaily1← Enter Days100%$60.00$60.00166
58   100%   0 
59Attachment - BroomAttachment - BroomDaily1← Enter Days100%$84.30$84.30000
60Morooka LTracked carrierDaily1← Enter Days100%$890.00$890.003412
61PORTA-JOHN (Pair)Portable Toilets (PAIR)Daily1← Enter Days100%$35.00$35.00000
62   100%    
63   100%    
64   100%    
65   100%    
66   100%    
67   100%    
68   100%    
69   100%    
70   100%    
71   100%    
72   100%    
73   100%    
Tab4
Cell Formulas
RangeFormula
B50:B73B50=IF(ISBLANK(A50),"",INDEX('[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!D:D,MATCH(A50,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!C:C,0)))
C50:C72C50=IF(ISBLANK($A50),"",IF($B$20="TC Energy",VLOOKUP($A50,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!$C:$G,5,0),"DWD Std Daily"))
C73C73=IF(ISBLANK($A73),"",IF($B$20="TC Energy",VLOOKUP($A73,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!$A:$G,7,0),"DWD Std Daily"))
G50:G73G50=IF(ISBLANK(A50),"",F50*VLOOKUP(A50,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!C:L,'Tab4'!$U$49,0))
H50:H73H50=IF(ISBLANK($A50),"",F50*($D50*VLOOKUP($A50,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!C:L,'Tab4'!$U$49,0)))
I50:I73I50=IF(ISBLANK(A50),"",VLOOKUP(A50,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!C:T,18,0))
E50:E73E50=IF(ISBLANK(A50),"",IF(C50="dwd Std Daily","← Enter Days",IF(C50="Daily","← Enter Days",IF(C50="Hourly","← Enter Hours","Fix Equip List"))))
K50:K73K50=IF(ISBLANK(A50),"",(I50*J50))
Cells with Conditional Formatting
CellConditionCell FormatStop If True
E50:E73Cell Valuecontains "Hours"textNO
E50:E73Cell Valuecontains "Days"textNO
E50:E73Cell Valuecontains "Fix"textNO
H50:H73Cell Value=0textNO
 
Upvote 0
ChatGPT Test.xlsx
ABCDEFGHIJK
48MACHINES
49ItemCategoryUse Daily or HourlyDays or Hours UsedRate Adj %Daily RateSub-TotalFuel GPHIn Use HoursTotal Est Fuel
504x4 Crew TruckPickup TruckDaily1← Enter Days115%$115.00$115.002.625.2
514x4 Stakebed TruckFlatbed TruckDaily1← Enter Days120%$156.00$156.00224
52   100%   0 
53   100%   0 
54Kubota KX080EXCAVATORDaily1← Enter Days100%$656.25$656.253824
55Kubota SVL95Skid LoaderDaily1← Enter Days100%$487.50$487.503824
56Compactor, Soil - Vibratory Double Drum Roller 40-49"Compactor, Soil - Vibratory Double Drum Roller 40-49"Daily1← Enter Days100%$278.00$278.001.569
57Compactor, Soil - Vibratory Plate SMALL RENTALCompactor, Soil - Vibratory Plate SMALLDaily1← Enter Days100%$60.00$60.00166
58   100%   0 
59Attachment - BroomAttachment - BroomDaily1← Enter Days100%$84.30$84.30000
60Morooka LTracked carrierDaily1← Enter Days100%$890.00$890.003412
61PORTA-JOHN (Pair)Portable Toilets (PAIR)Daily1← Enter Days100%$35.00$35.00000
62   100%    
63   100%    
64   100%    
65   100%    
66   100%    
67   100%    
68   100%    
69   100%    
70   100%    
71   100%    
72   100%    
73   100%    
Tab4
Cell Formulas
RangeFormula
B50:B73B50=IF(ISBLANK(A50),"",INDEX('[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!D:D,MATCH(A50,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!C:C,0)))
C50:C72C50=IF(ISBLANK($A50),"",IF($B$20="TC Energy",VLOOKUP($A50,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!$C:$G,5,0),"DWD Std Daily"))
C73C73=IF(ISBLANK($A73),"",IF($B$20="TC Energy",VLOOKUP($A73,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!$A:$G,7,0),"DWD Std Daily"))
G50:G73G50=IF(ISBLANK(A50),"",F50*VLOOKUP(A50,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!C:L,'Tab4'!$U$49,0))
H50:H73H50=IF(ISBLANK($A50),"",F50*($D50*VLOOKUP($A50,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!C:L,'Tab4'!$U$49,0)))
I50:I73I50=IF(ISBLANK(A50),"",VLOOKUP(A50,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!C:T,18,0))
E50:E73E50=IF(ISBLANK(A50),"",IF(C50="dwd Std Daily","← Enter Days",IF(C50="Daily","← Enter Days",IF(C50="Hourly","← Enter Hours","Fix Equip List"))))
K50:K73K50=IF(ISBLANK(A50),"",(I50*J50))
Cells with Conditional Formatting
CellConditionCell FormatStop If True
E50:E73Cell Valuecontains "Hours"textNO
E50:E73Cell Valuecontains "Days"textNO
E50:E73Cell Valuecontains "Fix"textNO
H50:H73Cell Value=0textNO
ChatGPT Test.xlsx
ABCDEFGHIJK
48MACHINES
49ItemCategoryUse Daily or HourlyDays or Hours UsedRate Adj %Daily RateSub-TotalFuel GPHIn Use HoursTotal Est Fuel
504x4 Crew TruckPickup TruckDaily20← Enter Days115%$115.00$2,300.002.640104
514x4 Stakebed TruckFlatbed TruckDaily20← Enter Days120%$156.00$3,120.0024080
52Material/Equipment TrailerTilt TrailerDaily10← Enter Days100%$110.00$1,100.00000
53Komatsu D51 PXiBulldozerDaily20← Enter Days100%$756.38$15,127.605160800
54Kubota KX080EXCAVATORDaily20← Enter Days100%$656.25$13,125.003160480
55Kubota SVL95Skid LoaderDaily20← Enter Days100%$487.50$9,750.003160480
56Compactor, Soil - Vibratory Double Drum Roller 40-49"Compactor, Soil - Vibratory Double Drum Roller 40-49"Daily15← Enter Days100%$278.00$4,170.001.54060
57Compactor, Soil - Vibratory Plate SMALL RENTALCompactor, Soil - Vibratory Plate SMALLDaily10← Enter Days100%$60.00$600.0014040
58Attachment-GPS Grader Blade RentalAttachment-GPS Grader Blade RentalDaily10← Enter Days100%$350.00$3,500.00000
59Attachment - BroomAttachment - BroomDaily20← Enter Days100%$84.30$1,686.00000
60Morooka LTracked carrierDaily10← Enter Days100%$890.00$8,900.00380240
61PORTA-JOHN (Pair)Portable Toilets (PAIR)Daily20← Enter Days100%$35.00$700.00000
62   100%    
63   100%    
64   100%    
65   100%    
66   100%    
67   100%    
68   100%    
69   100%    
70   100%    
71   100%    
72   100%    
73   100%    
Tab5
Cell Formulas
RangeFormula
B50:B73B50=IF(ISBLANK(A50),"",INDEX('[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!D:D,MATCH(A50,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!C:C,0)))
C50:C72C50=IF(ISBLANK($A50),"",IF($B$20="TC Energy",VLOOKUP($A50,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!$C:$G,5,0),"DWD Std Daily"))
C73C73=IF(ISBLANK($A73),"",IF($B$20="TC Energy",VLOOKUP($A73,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!$A:$G,7,0),"DWD Std Daily"))
G50:G73G50=IF(ISBLANK(A50),"",F50*VLOOKUP(A50,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!C:L,'Tab5'!$U$49,0))
H50:H73H50=IF(ISBLANK($A50),"",F50*($D50*VLOOKUP($A50,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!C:L,'Tab5'!$U$49,0)))
I50:I73I50=IF(ISBLANK(A50),"",VLOOKUP(A50,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!C:T,18,0))
E50:E73E50=IF(ISBLANK(A50),"",IF(C50="dwd Std Daily","← Enter Days",IF(C50="Daily","← Enter Days",IF(C50="Hourly","← Enter Hours","Fix Equip List"))))
K50:K73K50=IF(ISBLANK(A50),"",(I50*J50))
Cells with Conditional Formatting
CellConditionCell FormatStop If True
E50:E73Cell Valuecontains "Hours"textNO
E50:E73Cell Valuecontains "Days"textNO
E50:E73Cell Valuecontains "Fix"textNO
H50:H73Cell Value=0textNO
 
Upvote 0
ChatGPT Test.xlsx
ABCDEFGHIJK
48MACHINES
49ItemCategoryUse Daily or HourlyDays or Hours UsedRate Adj %Daily RateSub-TotalFuel GPHIn Use HoursTotal Est Fuel
504x4 Crew TruckPickup TruckDaily20← Enter Days115%$115.00$2,300.002.640104
514x4 Stakebed TruckFlatbed TruckDaily20← Enter Days120%$156.00$3,120.0024080
52Material/Equipment TrailerTilt TrailerDaily10← Enter Days100%$110.00$1,100.00000
53Komatsu D51 PXiBulldozerDaily20← Enter Days100%$756.38$15,127.605160800
54Kubota KX080EXCAVATORDaily20← Enter Days100%$656.25$13,125.003160480
55Kubota SVL95Skid LoaderDaily20← Enter Days100%$487.50$9,750.003160480
56Compactor, Soil - Vibratory Double Drum Roller 40-49"Compactor, Soil - Vibratory Double Drum Roller 40-49"Daily15← Enter Days100%$278.00$4,170.001.54060
57Compactor, Soil - Vibratory Plate SMALL RENTALCompactor, Soil - Vibratory Plate SMALLDaily10← Enter Days100%$60.00$600.0014040
58Attachment-GPS Grader Blade RentalAttachment-GPS Grader Blade RentalDaily10← Enter Days100%$350.00$3,500.00000
59Attachment - BroomAttachment - BroomDaily20← Enter Days100%$84.30$1,686.00000
60Morooka LTracked carrierDaily10← Enter Days100%$890.00$8,900.00380240
61PORTA-JOHN (Pair)Portable Toilets (PAIR)Daily20← Enter Days100%$35.00$700.00000
62   100%    
63   100%    
64   100%    
65   100%    
66   100%    
67   100%    
68   100%    
69   100%    
70   100%    
71   100%    
72   100%    
73   100%    
Tab5
Cell Formulas
RangeFormula
B50:B73B50=IF(ISBLANK(A50),"",INDEX('[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!D:D,MATCH(A50,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!C:C,0)))
C50:C72C50=IF(ISBLANK($A50),"",IF($B$20="TC Energy",VLOOKUP($A50,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!$C:$G,5,0),"DWD Std Daily"))
C73C73=IF(ISBLANK($A73),"",IF($B$20="TC Energy",VLOOKUP($A73,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!$A:$G,7,0),"DWD Std Daily"))
G50:G73G50=IF(ISBLANK(A50),"",F50*VLOOKUP(A50,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!C:L,'Tab5'!$U$49,0))
H50:H73H50=IF(ISBLANK($A50),"",F50*($D50*VLOOKUP($A50,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!C:L,'Tab5'!$U$49,0)))
I50:I73I50=IF(ISBLANK(A50),"",VLOOKUP(A50,'[Ambassador Christian School NC Football Field.xlsm]MASTER_EQUIP'!C:T,18,0))
E50:E73E50=IF(ISBLANK(A50),"",IF(C50="dwd Std Daily","← Enter Days",IF(C50="Daily","← Enter Days",IF(C50="Hourly","← Enter Hours","Fix Equip List"))))
K50:K73K50=IF(ISBLANK(A50),"",(I50*J50))
Cells with Conditional Formatting
CellConditionCell FormatStop If True
E50:E73Cell Valuecontains "Hours"textNO
E50:E73Cell Valuecontains "Days"textNO
E50:E73Cell Valuecontains "Fix"textNO
H50:H73Cell Value=0textNO
ChatGPT Test.xlsx
ABCDEFGHIJKLMN
8MACHINES
9ItemCategoryOwned ByDays UsedLocation RateRate Adj %Daily RateSub-TotalFuel GPHIn Use HoursTotal Est Fuel
104x4 Crew TruckPickup TruckDaily3← Enter Days115%$115.00$345.002.6615.64x4 Crew Truck2754
114x4 Stakebed TruckFlatbed TruckDaily3← Enter Days120%$156.00$468.0026124x4 Stakebed Truck2754
12Kubota KX080EXCAVATORDaily3← Enter Days100%$656.25$1,968.7532472Kubota KX08027216
13Kubota SVL95Skid LoaderDaily3← Enter Days100%$487.50$1,462.5032472Kubota SVL9527216
14Compactor, Soil - Vibratory Double Drum Roller 40-49"Compactor, Soil - Vibratory Double Drum Roller 40-49"Daily3← Enter Days100%$278.00$834.001.51218Compactor, Soil - Vibratory Double Drum Roller 40-49"2172
15Attachment - BroomAttachment - BroomDaily3← Enter Days100%$84.30$252.90000Attachment - Broom270
16Morooka LTracked carrierDaily3← Enter Days100%$890.00$2,670.0031854Morooka L16114
17PORTA-JOHN (Pair)Portable Toilets (PAIR)Daily3← Enter Days100%$35.00$105.00000PORTA-JOHN (Pair)270
184x4 Crew TruckPickup TruckDaily1← Enter Days115%$115.00$115.002.625.2Compactor, Soil - Vibratory Plate SMALL RENTAL1360
194x4 Stakebed TruckFlatbed TruckDaily1← Enter Days120%$156.00$156.00224Material/Equipment Trailer100
20Kubota KX080EXCAVATORDaily1← Enter Days100%$656.25$656.253824Komatsu D51 PXi20160
21Kubota SVL95Skid LoaderDaily1← Enter Days100%$487.50$487.503824Attachment-GPS Grader Blade Rental100
22Compactor, Soil - Vibratory Double Drum Roller 40-49"Compactor, Soil - Vibratory Double Drum Roller 40-49"Daily1← Enter Days100%$278.00$278.001.58120
23Compactor, Soil - Vibratory Plate SMALL RENTALCompactor, Soil - Vibratory Plate SMALLDaily1← Enter Days100%$60.00$60.00188
24Attachment - BroomAttachment - BroomDaily1← Enter Days100%$84.30$84.30000
25Morooka LTracked carrierDaily1← Enter Days100%$890.00$890.003412
26PORTA-JOHN (Pair)Portable Toilets (PAIR)Daily1← Enter Days100%$35.00$35.00000
274x4 Crew TruckPickup TruckDaily2← Enter Days115%$115.00$230.002.6410.4
284x4 Stakebed TruckFlatbed TruckDaily2← Enter Days120%$156.00$312.00248
29Kubota KX080EXCAVATORDaily2← Enter Days100%$656.25$1,312.5031648
30Kubota SVL95Skid LoaderDaily2← Enter Days100%$487.50$975.0031648
31Compactor, Soil - Vibratory Double Drum Roller 40-49"Compactor, Soil - Vibratory Double Drum Roller 40-49"Daily1← Enter Days100%$278.00$278.001.569
32Compactor, Soil - Vibratory Plate SMALL RENTALCompactor, Soil - Vibratory Plate SMALLDaily1← Enter Days100%$60.00$60.00166
33Attachment - BroomAttachment - BroomDaily2← Enter Days100%$84.30$168.60000
34Morooka LTracked carrierDaily1← Enter Days18908903824
35PORTA-JOHN (Pair)Portable Toilets (PAIR)Daily2← Enter Days13570000
364x4 Crew TruckPickup TruckDaily1← Enter Days1.151151152.625.2
374x4 Stakebed TruckFlatbed TruckDaily1← Enter Days1.2156156224
38Kubota KX080EXCAVATORDaily1← Enter Days1656.25656.253824
39Kubota SVL95Skid LoaderDaily1← Enter Days1487.5487.53824
40Compactor, Soil - Vibratory Double Drum Roller 40-49"Compactor, Soil - Vibratory Double Drum Roller 40-49"Daily1← Enter Days12782781.569
41Compactor, Soil - Vibratory Plate SMALL RENTALCompactor, Soil - Vibratory Plate SMALLDaily1← Enter Days16060166
42Attachment - BroomAttachment - BroomDaily1← Enter Days184.384.3000
43Morooka LTracked carrierDaily1← Enter Days18908903412
44PORTA-JOHN (Pair)Portable Toilets (PAIR)Daily1← Enter Days13535000
454x4 Crew TruckPickup TruckDaily20← Enter Days1.1511523002.640104
464x4 Stakebed TruckFlatbed TruckDaily20← Enter Days1.2156312024080
47Material/Equipment TrailerTilt TrailerDaily10← Enter Days11101100000
48Komatsu D51 PXiBulldozerDaily20← Enter Days1756.3815127.65160800
49Kubota KX080EXCAVATORDaily20← Enter Days1656.25131253160480
50Kubota SVL95Skid LoaderDaily20← Enter Days1487.597503160480
51Compactor, Soil - Vibratory Double Drum Roller 40-49"Compactor, Soil - Vibratory Double Drum Roller 40-49"Daily15← Enter Days127841701.54060
52Compactor, Soil - Vibratory Plate SMALL RENTALCompactor, Soil - Vibratory Plate SMALLDaily10← Enter Days16060014040
53Attachment-GPS Grader Blade RentalAttachment-GPS Grader Blade RentalDaily10← Enter Days13503500000
54Attachment - BroomAttachment - BroomDaily20← Enter Days184.31686000
55Morooka LTracked carrierDaily10← Enter Days18908900380240
56PORTA-JOHN (Pair)Portable Toilets (PAIR)Daily20← Enter Days135700000
Sheet1
Cell Formulas
RangeFormula
A10:K56A10=LET( X, VSTACK( 'Tab1'!A50:K73, 'Tab2'!A50:K73, 'Tab3'!A50:K73, 'Tab4'!A50:K73, 'Tab5'!A50:K73 ), FILTER(X, INDEX(X,,1)<>"") )
L10:L22L10=UNIQUE(A10:A1000)
M10:M21M10=SUMIFS(D10:D1000, A10:A1000, L10)
N10:N21N10=SUMIFS(J10:J1000, A10:A1000, L10)
Dynamic array formulas.
Cells with Conditional Formatting
CellConditionCell FormatStop If True
G33Expression=$E$73="Northeast"textNO
G33Expression=$E$73="Plains"textNO
G32Expression=$E$72="Northeast"textNO
G32Expression=$E$72="Plains"textNO
G31Expression=$E$71="Northeast"textNO
G31Expression=$E$71="Plains"textNO
G30Expression=$E$70="Northeast"textNO
G30Expression=$E$70="Plains"textNO
G29Expression=$E$69="Northeast"textNO
G29Expression=$E$69="Plains"textNO
G28Expression=$E$68="Northeast"textNO
G28Expression=$E$68="Plains"textNO
G27Expression=$E$67="Northeast"textNO
G27Expression=$E$67="Plains"textNO
G26Expression=$E$66="Northeast"textNO
G26Expression=$E$66="Plains"textNO
G25Expression=$E$65="Northeast"textNO
G25Expression=$E$65="Plains"textNO
G24Expression=$E$64="Northeast"textNO
G24Expression=$E$64="Plains"textNO
G23Expression=$E$63="Northeast"textNO
G23Expression=$E$63="Plains"textNO
G22Expression=$E$62="Northeast"textNO
G22Expression=$E$62="Plains"textNO
G21Expression=$E$61="Northeast"textNO
G21Expression=$E$61="Plains"textNO
G20Expression=$E$60="Northeast"textNO
G20Expression=$E$60="Plains"textNO
G19Expression=$E$59="Northeast"textNO
G19Expression=$E$59="Plains"textNO
G18Expression=$E$58="Northeast"textNO
G18Expression=$E$58="Plains"textNO
G17Expression=$E$57="Northeast"textNO
G17Expression=$E$57="Plains"textNO
G16Expression=$E$56="Northeast"textNO
G16Expression=$E$56="Plains"textNO
G15Expression=$E$55="Northeast"textNO
G15Expression=$E$55="Plains"textNO
G14Expression=$E$54="Northeast"textNO
G14Expression=$E$54="Plains"textNO
G13Expression=$E$53="Northeast"textNO
G13Expression=$E$53="Plains"textNO
G12Expression=$E$52="Northeast"textNO
G12Expression=$E$52="Plains"textNO
G11Expression=$E$51="Northeast"textNO
G11Expression=$E$51="Plains"textNO
G10Expression=$E$50="Northeast"textNO
G10Expression=$E$50="Plains"textNO
H10:H33Cell Value=0textNO
 
Upvote 0
Status
Not open for further replies.

Forum statistics

Threads
1,220,965
Messages
6,157,119
Members
451,398
Latest member
rjsteward

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top