Good morning
I am trying to add the values of a gridview that I select to a texbox, create the following (see code below) but it returns this error "Conversion from string" "to type 'Double' is not valid."
Code
Private Sub SumOpcion2 ()
Dim total As Decimal = 0
For Each row As GridViewRow In Gvcobranzas.Rows
total += row.Cells(4).Text
Next
TxtMonto.Text = total
End Sub