Skip to content

Commit 5fbd8e4

Browse files
committed
Improvements: integration with VBAexpressions core modules.
1 parent d058b5f commit 5fbd8e4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/CSVArrayList.cls

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -392,9 +392,9 @@ Private Function FilterVarValues(RecIndex As Long, FieldsToFilterOn() As Long) A
392392
End Function
393393

394394
Private Function IsBoolean(ByRef Expression As String) As Boolean
395-
IsBoolean = (Expression = "true")
395+
IsBoolean = (LCase(Expression) = "true")
396396
If Not IsBoolean Then
397-
IsBoolean = (Expression = "false")
397+
IsBoolean = (LCase(Expression) = "false")
398398
End If
399399
End Function
400400

0 commit comments

Comments
 (0)