Remove numeric check for I column
This commit is contained in:
@@ -306,8 +306,8 @@ Sub validateDetailData(ByVal ws As Worksheet, ByVal rowNum As Long)
|
||||
Exit Sub
|
||||
End If
|
||||
|
||||
If Trim(ws.Cells(rowNum, 9).Value) = "" Or Not IsNumeric(ws.Cells(rowNum, 9).Value) Then
|
||||
ws.Cells(rowNum, 17).Value = "I column is required and must be numeric"
|
||||
If Trim(ws.Cells(rowNum, 9).Value) = "" Then
|
||||
ws.Cells(rowNum, 17).Value = "I column is required"
|
||||
Exit Sub
|
||||
End If
|
||||
|
||||
|
||||
Reference in New Issue
Block a user