Skip to content

Commit

Permalink
minor code addition
Browse files Browse the repository at this point in the history
  • Loading branch information
N-thony committed Dec 23, 2022
1 parent 85fa937 commit 7e02b34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion instat/ucrDataView.vb
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ Public Class ucrDataView
Exit Sub
End If
Case "list"
If strNewValue.Split(",").All(Function(x) Integer.TryParse(x, iValue) Or Double.TryParse(x, dblValue)) Then
If strNewValue.Split(",").All(Function(x) Integer.TryParse(x, iValue) Or Double.TryParse(x, dblValue) Or Trim(x) = "NA") Then
bWithQuotes = False
bListOfVector = strNewValue.Contains(",")
Else
Expand Down

0 comments on commit 7e02b34

Please sign in to comment.