Sumif from list?

ASingh91

New Member
Joined
Aug 8, 2017
Messages
2
I am trying to create a spreadsheet to track the progress of a bet at the minute, basically the bet revolves around goalscorers in football (soccer) this would then be collated into a leaderboard based on one point per correct selection

I am trying to formulate it so that for each correct pick it will add one point to the end column. I would do this by choosing from a list of Yes/No Then this would increment the end column depending on Yes/No so +1 for Yes & +0 for no

How would I go about putting this as a formula

Then for the leaderboard it would pull the scores which would be on a separate sheet for each "matchday" then automatically update and sort highest to lowest

Thanks in advance
 

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result
Set up your data validation for 'Yes' & 'No' then ese

Code:
 =COUNTIF(*cell*:*cell*,"Yes")
- this will give you your total
 
Last edited:
Upvote 0
Thanks for this part

When I am doing the table for total points how can I set it to dynamically change based on the other sheets calculations I.e week 1 player 1 gets 4 points player 2 gets 2 points, week 2 player 1 gets 0 points player two gets 3 points

How can I automatically sort largest to smallest
 
Upvote 0
Your best bet would be to record a simple macro of you sorting the table into largest to smallest and then assign it to a button so with one click you can refresh. That's what I would do anyway
 
Upvote 0

Forum statistics

Threads
1,216,028
Messages
6,128,399
Members
449,447
Latest member
M V Arun

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