Summing the results of multiple cells based on other data

DavidWT87

New Member
Joined
May 10, 2023
Messages
25
Office Version
  1. 2016
Platform
  1. Windows
Hello

Just from a bit of curiosity, I want to look into F1 points history using the current format, and would like an efficient way to speed up the process.

As an example, from this data here, I would like a formula to return the total number of points in L4 based on the finishing positions from E4 to K4

Columns A and B show the points awarded for each type of finishing position. I need L4 to match each cell from E4 to K4 in turn with the position in column A, and sum the corresponding points that are associated with each result.

I.e from E4 to K4 - it'll see 1F, blank, blank, 1F, 4F, 7, 1 and sum the corresponding points for those positions - 26,0,0,26,13,6,25 for a total of 96

I could put something pretty convoluted together myself, but would ideally like something a bit more elegant than I'm capable of doing!
 

Attachments

  • f1 points.JPG
    f1 points.JPG
    57.7 KB · Views: 7

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
How about
Excel Formula:
=SUM(SUMIFS(B:B,A:A,E4:K4))
 
Upvote 0
Solution
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,224,818
Messages
6,181,152
Members
453,021
Latest member
Justyna P

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