JenniferMurphy
Well-known Member
- Joined
- Jul 23, 2011
- Messages
- 2,687
- Office Version
- 365
- Platform
- Windows
I need to tally some results for tennis players. Is there any way in Excel to emulate an array with non-numeric subscripts?
If I am reading data from a table with results for "Eliza", "Susie", and "Molly", can I get the effect of an array with these names as subscripts?
I am looking for the equivalent of one of these:
Thanks
If I am reading data from a table with results for "Eliza", "Susie", and "Molly", can I get the effect of an array with these names as subscripts?
I am looking for the equivalent of one of these:
Code:
Winner = "Eliza"
Games(Winner) = Games(Winner) + 1
Games.Winner = Games.Winner + 1
Thanks