We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c05aea commit 5be54e4Copy full SHA for 5be54e4
docs/api/methods/filter.md
@@ -92,8 +92,8 @@ Sub FilterCSV()
92
CSVint.parseConfig.Headers = False 'The file has no header record/row
93
CSVint.parseConfig.path = path
94
If path <> vbNullString Then
95
- Set FilteredData = CSVint.Filter("f1='Asia' & f9>20 & f9<=50 & f8 $ '10/*/2014'", path) 'Select "Units sold" greater than 20 and less or
96
- 'equal to 50 from Asian customers in October 2014
+ 'Select "Units sold" greater than 20 and less or equal to 50 from Asian customers in October 2014
+ Set FilteredData = CSVint.Filter("f1='Asia' & f9>20 & f9<=50 & f8 $ '10/*/2014'", path)
97
Set CSVint = Nothing
98
Set FilteredData = Nothing
99
End If
0 commit comments