J
Joe
I keep am automating the reading of an Excel spreadsheet and
keep getting an error message when I check to see if a cell is
blank. This is my code
For i = 1 To RowsUsed
If xlSheet.Cells(i, 12).Value = "" Then
BlankOrigFICO = BlankOrigFICO + 1
End If
Next
The error message that I get is "Conversion from string'''' to
'Double' is not valid'
Does anyone have any ideas about how I can avoid this error?
J
keep getting an error message when I check to see if a cell is
blank. This is my code
For i = 1 To RowsUsed
If xlSheet.Cells(i, 12).Value = "" Then
BlankOrigFICO = BlankOrigFICO + 1
End If
Next
The error message that I get is "Conversion from string'''' to
'Double' is not valid'
Does anyone have any ideas about how I can avoid this error?
J