im making a program where I have to use a Inputbox function to repeatedly ask the user to enter a series of test scores from 1-100.

i have to calculate and display the following values:

total of all scores
nubmer of scores that were entered
the average score
and the number of scores in the A range (90-100)
the number of scores in the B range (80-89)
the number of scores in the C range (70-79)
the number of scores in the D range (60-69)
the number of scores in the F range (0-59)

i got everything working except for the number of letter grades displaying in the labels. Do i need to incorporate If statements for each one or use a case structure?