Win Probabilities associated with Point Spreads

Pezgordo

Board Regular
Joined
Jan 28, 2011
Messages
61
I have created a column that contains point spreads and another column that contains the win probability associated with that point spread (see screen shot). What I would like to be able to is to insert a point spread anywhere in the worksheet and then have the win% automatically appear in the next cell over (to the right). For example, if I insert -6 in cell A1 (whether manually or by formula), 66.42% will automatically come up in cell B1.

Thank you,

Pez
 

Attachments

  • Screenshot 2024-04-30 120820.png
    Screenshot 2024-04-30 120820.png
    10.5 KB · Views: 4

Excel Facts

Best way to learn Power Query?
Read M is for (Data) Monkey book by Ken Puls and Miguel Escobar. It is the complete guide to Power Query.
Hi Pezgordo

This should work - Just replace “HERE” with the formula you are using for the calculation;

Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)
Application.EnableEvents = False
Target.Offset(0, 1).Value = "HERE"
Application.EnableEvents = True
End Sub

Hope this helps
Nick
 
Upvote 0
I have created a column that contains point spreads and another column that contains the win probability associated with that point spread (see screen shot). What I would like to be able to is to insert a point spread anywhere in the worksheet and then have the win% automatically appear in the next cell over (to the right). For example, if I insert -6 in cell A1 (whether manually or by formula), 66.42% will automatically come up in cell B1.

Thank you,

Pez
Google VLOOKUP.
 
Upvote 0

Forum statistics

Threads
1,216,098
Messages
6,128,812
Members
449,468
Latest member
AGreen17

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