I am trying to display the results of this case and format the total amount in currency. However, It's not working and I am not quite sure why? Could someone please take a look at my code and tell me if you see what my eyes cannot. I just need a second pair of eyes on this one. Thank you!
Select Case ApplianceButton
Case "Refrigerator"
Label17.Text = FormatCurrency(kwVal).ToString
Case "TV"
Label19.Text = FormatCurrency(kwVal).ToString
Case "Fan"
Label21.Text = FormatCurrency(kwVal).ToString
Case "Space Heater"
Label23.Text = FormatCurrency(kwVal).ToString
Case "Oven"
Label25.Text = FormatCurrency(kwVal).ToString
Case "Dryer"
Label27.Text = FormatCurrency(kwVal).ToString
Case "Laundry Washer"
Label29.Text = FormatCurrency(kwVal).ToString
Label30.Text = Int((kwVal(Label17.Text) + kwVal(Label19.Text)
+ kwVal(Label21.Text) + kwVal(Label23.Text) + kwVal(Label25.Text)
+ kwVal(Label27.Text) + kwVal(Label29.Text)))