sum table
Bonita wrote:
Need a single formula that will return the sum of all items lbs/hr
(lbs*rate)/hours
Goal is not to have Col D as lbs/hr and total the column
Lbs Rate Hours
Item 1 10 1.00 25
Item 2 5 .50 10
The single formula would return .65 as the answer.
Hello,
With your example in A1:D3:
=SUMPRODUCT(B2:B3,C2:C3,1/(D2:D3))
|