Milly B.
Milly B.

Reputation: 3

Google sheets lookup and sum

I have a production schedule where cells are filled with text:

Day 1, Day 2 etc.

And I'd like these cells to be associated with values elsewhere in the same sheet.

For example. Day 1 would be 4 (which corresponds to 4 hours).

Then I have to sum these cells/values (Day 1 = 4 + Day 2 = 6) to get a total for each row.

I can't seem to find a way to do all this using one formula. Is it even possible?

Feel free to check out the sheet.

Upvotes: 0

Views: 6227

Answers (1)

TheMaster
TheMaster

Reputation: 50443

=SUMPRODUCT(IFERROR(VLOOKUP(B2:L2,Formulas!A:B,2,0)))

Upvotes: 3

Related Questions