You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+26-3Lines changed: 26 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -344,12 +344,17 @@ Show only rows where specific columns match your criteria. **Supports filtering
344
344
|**OR**|`term1 OR term2`| Same cell contains either term |`error OR warning` → cell has "error" or "warning" |
345
345
|**AND**|`term1 AND term2`| Same cell contains both terms |`user AND admin` → cell has both words |
346
346
|**ROR**|`term1 ROR term2`| Keeps all rows matching any term |`high ROR critical` → rows with "high" + rows with "critical" |
347
+
|**>**|`>value`| Numeric: greater than (number columns only) |`>30` → values greater than 30 |
348
+
|**<**|`<value`| Numeric: less than (number columns only) |`<50` → values less than 50 |
349
+
|**>=**|`>=value`| Numeric: greater than or equal (number columns only) |`>=100` → values 100 or more |
350
+
|**<=**|`<=value`| Numeric: less than or equal (number columns only) |`<=75` → values 75 or less |
347
351
348
352
**Key Differences:**
349
353
-**OR vs ROR**: OR checks if a single cell contains either term. ROR combines rows where any cell matches any term (row-level union).
350
-
- All operators must be **UPPERCASE** and surrounded by spaces
351
-
- Search terms are case-insensitive
352
-
- All matching is partial (substring)
354
+
-**Numeric operators** (`>`, `<`, `>=`, `<=`): Only work on numeric and date columns (automatically detected). Perform numeric comparisons instead of text matching.
355
+
- All operators must be **UPPERCASE** and surrounded by spaces (except numeric operators)
356
+
- Search terms are case-insensitive (except numeric comparisons)
357
+
- All matching is partial (substring) for text, exact comparison for numeric operators
353
358
-**Visual indicator**: Filtered column headers show 🔎 icons and orange background
354
359
355
360
**Examples:**
@@ -371,11 +376,28 @@ Navigate to "Description" column → f → type "user AND admin" → Enter
371
376
Navigate to "Priority" column → f → type"high ROR critical" → Enter
372
377
# Result: All rows with "high" + all rows with "critical" (union)
373
378
379
+
# Numeric comparison - greater than
380
+
Navigate to "Age" column → f → type">30" → Enter
381
+
# Result: Rows where Age is greater than 30
382
+
383
+
# Numeric comparison - less than or equal
384
+
Navigate to "Score" column → f → type"<=85" → Enter
385
+
# Result: Rows where Score is 85 or less
386
+
387
+
# Numeric comparison - greater than or equal
388
+
Navigate to "Salary" column → f → type">=50000" → Enter
389
+
# Result: Rows where Salary is 50000 or more
390
+
374
391
# Multi-column filtering
375
392
Navigate to "City" column → f → type"New York" → Enter
376
393
Navigate to "Department" column → f → type"Engineering" → Enter
377
394
# Result: Rows where City="New York" AND Department contains "Engineering"
378
395
396
+
# Multi-column with numeric filter
397
+
Navigate to "Age" column → f → type">25" → Enter
398
+
Navigate to "Score" column → f → type">80" → Enter
399
+
# Result: Rows where Age > 25 AND Score > 80
400
+
379
401
# Edit existing filter
380
402
Navigate to filtered column → f → modify text → Enter
381
403
# Or enter empty text to remove that column's filter
@@ -393,6 +415,7 @@ Navigate to each filtered column → Press r on each
393
415
- Use **OR** when a single field can have alternative values
394
416
- Use **AND** when a single field must meet multiple criteria
395
417
- Use **ROR** when you want to combine different categories of results
418
+
- Use **numeric operators** (`>`, `<`, `>=`, `<=`) to filter by numeric ranges on number or date columns
396
419
- Use **multi-column filters** to narrow down data by multiple dimensions (e.g., location AND department AND status)
0 commit comments