Many different ways to do this. I will describe a few here:
If a sport has a named range for the probabilities called "Sport1_prob" in cells A1 to A5, you can cycle through that range with something like:
You can use the range directly if there is no named range
Alternately, in the same scenario above you can perform looping using the For...Each method
If you want to cycle through the probabilities in a list from A1 to A5 and the list may eventually expand unlimited down column A, you can use this method:
Note that the 1 (highlighted in red) indicates it is looking down column 1
Use any of the loop methods embedded within each other as you described in the post.
HTH,
Maud
Bookmarks