I have an Excel Spreadsheet with 4 Columns for a bowling league. The spreadsheet tracks the Bowlers By Average Ranking them 1st to last.
Heres the structure
Name Average Rank Pins behind
Tom 178 1 -
Sam 173 2 4
Bill 173 2 4
Sally 170 3 8
Name Never changes.
Average changes each week
Pins behind is calculated with the following formula from Cell B3
Where B3 = the current row 3 and changes for each row below
=IF(MAX(B2:B24)=B3,"-",MAX(B2:B24)-B3)
What I'd like to do First is create a formula to get the rank rather than have to manually change it each week. Second in the Fall we will have three times as many bowlers in the league and I'd like to create a VBA Formula so that the
=IF(MAX(B2:B24)=B3,"-",MAX(B2:B24)-B3) Formula doesn't have to be changed each time I copy it. As it is if I copy the formula from 1 cell to the next it automatically adjusts the cells which is not what I want.
Heres the structure
Name Average Rank Pins behind
Tom 178 1 -
Sam 173 2 4
Bill 173 2 4
Sally 170 3 8
Name Never changes.
Average changes each week
Pins behind is calculated with the following formula from Cell B3
Where B3 = the current row 3 and changes for each row below
=IF(MAX(B2:B24)=B3,"-",MAX(B2:B24)-B3)
What I'd like to do First is create a formula to get the rank rather than have to manually change it each week. Second in the Fall we will have three times as many bowlers in the league and I'd like to create a VBA Formula so that the
=IF(MAX(B2:B24)=B3,"-",MAX(B2:B24)-B3) Formula doesn't have to be changed each time I copy it. As it is if I copy the formula from 1 cell to the next it automatically adjusts the cells which is not what I want.