This is what I have, just not sure how to actually get the sum of the listbox numbers.
If intNumberOfEntries > 1 Then
lblTotalSnowfall.Visible = True
decTotalSnowfall = lstSnowfall.Items.Add(decSnowfall)
lblTotalSnowfall.Text = "The total snowfall for the city is " &
decTotalSnowfall.ToString("F1") & " inches"
Else
MsgBox("No snowfall value entered")
End If
I know for sure line 3 is where I went wrong, just not sure what to put there. Thanks ahead for the help!