Filtering and Sorting
Learn how to filter and sort data effectively in Raycaster AI Workspace
Using Filters to Find What You Need
Filters help you quickly find specific information in your sheets by showing only rows that match your criteria. This is especially helpful when working with large datasets.
Creating Basic Filters
Open Filter Panel
Click the “Filter” button in the toolbar to open the filter panel
Add Filter Condition
Configure your filter by selecting:
- Column: Choose which column to filter on
- Operation: Select the comparison operation
- Value: Enter the value to compare against
Apply Filter
Click “Apply” to filter your data
When filters are active, a filter indicator appears in the toolbar showing the number of active filters. You can click this indicator to quickly access and edit your filters.
Filter Operations by Column Type
Different column types support different filtering operations:
Basic Filters
These fundamental filters are available across most column types:
-
Equals (=): Matches values that are exactly the same as your input
- In text fields: Case-sensitive exact match
- In numeric fields: Exact numeric match
-
Not Equal (!=): Shows all values except those that exactly match your input
- Useful for excluding specific values from your results
-
Contains: Text includes the specified substring
-
Starts With: Text begins with the specified characters
-
Ends With: Text ends with the specified characters
TEXT Column Filters
- Contains: Text includes the specified substring
- Equals: Text matches exactly (case-sensitive)
- Does not equal: Text does not match exactly
- Starts with: Text begins with the specified characters
- Ends with: Text ends with the specified characters
- Is empty: Cell has no content
- Is not empty: Cell has any content
NUMBER Column Filters
- Equals: Value matches exactly
- Does not equal: Value does not match
- Greater than: Value exceeds specified number
- Less than: Value is below specified number
- Between: Value falls within a specified range
- Is empty: Cell has no value
- Is not empty: Cell has any value
DATE Column Filters
- On: Date matches exactly
- Before: Date is earlier than specified
- After: Date is later than specified
- Between: Date falls within a range
- Is empty: No date entered
- Is not empty: Any date present
BOOLEAN Column Filters
- Is true: Shows only items marked as true/yes
- Is false: Shows only items marked as false/no
SELECT Column Filters
- Is: Matches a specific selected option
- Is not: Excludes a specific selected option
- Is any of: Matches any option in a list
- Is all of: Matches all options in a list (MULTI_SELECT only)
- Is empty: No option selected
- Is not empty: Any option selected
Advanced Filters
In addition to the basic filter operations, Raycaster provides powerful advanced filtering capabilities:
- Like (~~ ): Matches text using SQL-like pattern matching with wildcards
- Example:
~~%data science%
would match any text containing “data science”
- Example:
- Case Insensitive Like: Similar to Like but ignores letter case
- Example: This would match “DATA SCIENCE”, “data science”, or “Data Science”
- In List: Checks if a value is contained within a specified list of options
- Example: Check if a company is in a list of target accounts
- Is Null: Shows only rows where the cell has a null value (different from empty)
- Note: This is useful for finding rows with missing data that need attention
These advanced filters are especially useful for complex data analysis and can be combined with basic filters to create highly specific data views.
Combining Filters
For more complex filtering needs, you can combine multiple filter conditions:
Add Multiple Conditions
After creating your first filter, click “Add Filter” to add more conditions
Set Condition Relationship
Choose how the conditions relate to each other:
- AND: All conditions must be met (default)
- OR: Any condition can be met
Create Filter Groups
For even more complex logic:
- Click “Add Group” to create a nested group of conditions
- Groups can have their own AND/OR relationship
- You can combine groups with individual conditions
Filter Logic Examples
Example of combining filters with AND logic:
- Column “Industry” contains “biotech” AND
- Column “Funding” is greater than “5000000” AND
- Column “Country” equals “United States”
This would show only biotech companies in the United States with more than $5M in funding.
Example of combining filters with OR logic:
- Column “Industry” contains “biotech” OR
- Column “Industry” contains “pharma” OR
- Column “Industry” contains “medical devices”
This would show companies from any of these three industries.
Clearing Filters
To remove filters and return to viewing all data:
- Click the “Filter” button in the toolbar to open the filter panel
- Click “Clear All” to remove all filters
- Alternatively, click the “X” next to individual filters to remove them selectively
Sorting Data
Sorting helps you organize your data in a meaningful order, making it easier to analyze and understand patterns.
Basic Sorting
To sort by a single column:
Click Column Header
Click directly on the column header you want to sort by
- First click: Sort ascending (A→Z, 1→9)
- Second click: Sort descending (Z→A, 9→1)
- Third click: Remove sorting
View Sort Indicator
An arrow appears in the column header showing the sort direction
- ↑ indicates ascending sort
- ↓ indicates descending sort
Combining Filters and Sorts
Filters and sorts work together to help you pinpoint exactly the data you need:
- First apply filters to narrow down to the specific data subset you’re interested in
- Then apply sorting to organize that filtered data in a meaningful way
- Both filters and sorts remain active until you clear them
Example Combined Workflow
A typical workflow might look like:
- Filter companies to only show those in the pharmaceutical industry
- Further filter to include only those with funding over $10M
- Sort these filtered companies by employee count (descending)
- Add a secondary sort by founded date (newest first)
This gives you a view of the largest, newest pharmaceutical companies with significant funding.
For more advanced data manipulation, check out the Custom Views section, which allows you to save combinations of filters, sorts, and visible columns.