Wicked Smart Data
LearnArticlesAbout
Sign InSign Up
LearnArticlesAboutContact
Sign InSign Up
Wicked Smart Data

The go-to platform for professionals who want to master data, automation, and AI — from Excel fundamentals to cutting-edge machine learning.

Platform

  • Learning Paths
  • Articles
  • About
  • Contact

Connect

  • Contact Us
  • RSS Feed

© 2026 Wicked Smart Data. All rights reserved.

Privacy PolicyTerms of Service
All Articles
Master Excel Sorting, Filtering, and Tables for Professional Data Management

Master Excel Sorting, Filtering, and Tables for Professional Data Management

Microsoft Excel🌱 Foundation20 min readMay 9, 2026Updated May 9, 2026
Table of Contents
  • Prerequisites
  • Understanding Your Data Structure
  • Mastering Excel Sorting
  • Single-Column Sorting
  • Multi-Column Sorting
  • Understanding Sort Behavior with Different Data Types
  • Filtering Data for Targeted Analysis
  • Applying Basic Filters
  • Advanced Text Filtering
  • Numeric Filtering
  • Date Filtering
  • Combining Multiple Filters
  • Converting Data to Excel Tables
  • Creating Your First Table

When you first open a spreadsheet filled with hundreds or thousands of rows of data, it can feel overwhelming. Where do you even begin to find the information you need? How do you organize it to spot patterns or answer specific questions? This is where Excel's data management tools become absolutely essential.

Imagine you're managing employee records for a mid-sized company. You have columns for names, departments, hire dates, salaries, and performance ratings spread across 500 rows. Your manager asks you to find all employees in the Marketing department hired after 2020 who earned ratings above 3.5. Without proper data management skills, you'd be scrolling endlessly, manually scanning each row. With Excel's sorting, filtering, and table features, you can get that answer in seconds.

By the end of this lesson, you'll transform from someone who gets lost in spreadsheet data to someone who can efficiently organize, search, and analyze any dataset with confidence.

What you'll learn:

  • How to sort data by single and multiple columns to reveal patterns and organize information
  • How to apply filters to show only the data that meets your specific criteria
  • How to convert regular ranges into Excel Tables for enhanced data management
  • How to use Table features like structured references and automatic formatting
  • How to combine sorting and filtering techniques for complex data analysis

Prerequisites

You should be comfortable with basic Excel navigation, entering data in cells, and selecting ranges of cells. If you can create a simple spreadsheet with headers and data, you're ready for this lesson.

Understanding Your Data Structure

Before diving into sorting and filtering, let's establish what makes data "well-structured." Structured data follows consistent rules that make it suitable for analysis. Think of it like a filing cabinet where every folder follows the same labeling system.

Well-structured data has these characteristics:

  • Headers in the first row: Each column has a descriptive name
  • Consistent data types: Each column contains the same type of information (dates in date columns, numbers in number columns)
  • One record per row: Each row represents a single entity or observation
  • No merged cells: Every piece of data sits in its own cell
  • No blank rows or columns within the data range

Let's work with a realistic employee dataset throughout this lesson. Create a new Excel workbook and enter this data:

A1: Employee_ID    B1: First_Name    C1: Last_Name    D1: Department    E1: Hire_Date    F1: Salary    G1: Rating
A2: 1001          B2: Sarah         C2: Johnson      D2: Marketing     E2: 1/15/2019    F2: 65000     G2: 4.2
A3: 1002          B3: Mike          C3: Chen         D3: Engineering   E3: 3/22/2020    F3: 78000     G3: 3.8
A4: 1003          B4: Lisa          C4: Rodriguez    D4: Marketing     E4: 7/10/2021    F4: 62000     G4: 4.5
A5: 1004          B5: David         C5: Kim          D5: Sales         E5: 11/5/2018    F5: 71000     G5: 3.2
A6: 1005          B6: Emily         C6: Brown        D6: Engineering   E6: 9/14/2022    F6: 75000     G6: 4.1
A7: 1006          B7: Alex          C7: Martinez     D7: HR            E7: 2/28/2020    F7: 59000     G7: 3.9
A8: 1007          B8: Jessica       C8: Taylor       D8: Marketing     E8: 12/3/2021    F8: 64000     G8: 4.0
A9: 1008          B9: Ryan          C9: Anderson     D9: Sales         E9: 6/18/2019    F9: 69000     G9: 3.6

This gives us a realistic dataset to practice with—8 employees across different departments with varying hire dates, salaries, and performance ratings.

Mastering Excel Sorting

Sorting reorganizes your data based on the values in one or more columns. Think of it like organizing books—you might sort them alphabetically by title, chronologically by publication date, or by genre. Excel sorting works the same way but with your data.

Single-Column Sorting

Let's start by sorting our employee data alphabetically by last name. First, you need to select your data range. Click on cell A1, then drag to G9 to select all your data including headers. Alternatively, click anywhere in your data and press Ctrl+A to select the entire data region automatically.

With your data selected, go to the Data tab on the ribbon and look for the Sort & Filter group. You'll see two quick sort buttons: Sort A to Z (ascending) and Sort Z to A (descending). But don't use these yet—they're for simple, single-column sorts without headers.

Instead, click the Sort button (the larger one with the icon showing multiple rows). This opens the Sort dialog box, which gives you much more control. In the Sort dialog, you'll see:

  • Sort by dropdown: Choose which column to sort by
  • Sort On dropdown: Usually "Values" unless you're sorting by cell color
  • Order dropdown: Ascending (A to Z, smallest to largest) or Descending (Z to A, largest to smallest)
  • My data has headers checkbox: Critical—check this if your first row contains column names

For our first sort, select "Last_Name" in the Sort by dropdown, ensure "Values" is selected for Sort On, choose "A to Z" for Order, and make sure "My data has headers" is checked. Click OK.

Notice how Excel rearranges all rows while keeping each employee's information together. Anderson appears first, followed by Brown, Chen, and so on. This is the power of sorting—Excel treats each row as a unit and moves entire rows together.

Multi-Column Sorting

Single-column sorting is useful, but real-world scenarios often require more sophisticated organization. Suppose you want to sort first by department, then by salary within each department. This requires multi-level sorting.

With your data still selected, return to Data → Sort. In the Sort dialog, you'll see your previous sort criteria. Click "Add Level" to create a second sort criterion. Now you have:

  • Sort by: Department (A to Z)
  • Then by: Salary (Largest to Smallest)

This creates a hierarchy: Excel first groups all employees by department alphabetically, then within each department, it sorts employees by salary from highest to lowest. Click OK to apply.

Examine the results carefully. You'll see all Engineering employees grouped together, then HR, then Marketing, then Sales. Within each department, employees appear in descending salary order. This multi-level approach reveals patterns you might miss with single-column sorting—like which departments tend to have higher salaries.

Pro Tip: You can add up to 64 sort levels in Excel. While you'll rarely need that many, complex datasets sometimes require three or four levels to organize meaningfully.

Understanding Sort Behavior with Different Data Types

Excel sorts different data types using different rules, and understanding these rules prevents confusion:

  • Text: Alphabetical order, with numbers treated as text coming before letters (1, 2, 10, 20, A, B)
  • Numbers: Numerical order (-2, -1, 0, 1, 2, 10, 20, 100)
  • Dates: Chronological order from oldest to newest (or vice versa)
  • Mixed types: Generally, numbers before text before dates, but this can be unpredictable

Try sorting by Hire_Date to see chronological sorting in action. David (hired 11/5/2018) should appear first, followed by Sarah (1/15/2019), and so on.

Filtering Data for Targeted Analysis

While sorting reorganizes all your data, filtering shows you only the rows that meet specific criteria. It's like having x-ray vision for your spreadsheet—you can see through the noise to find exactly what you need.

Applying Basic Filters

To enable filtering, select your data range (A1:G9) and go to Data → Filter. You'll immediately notice dropdown arrows appear in each header cell. These arrows are your gateway to filtering options.

Click the dropdown arrow in the Department column. You'll see a list showing every unique value in that column: Engineering, HR, Marketing, Sales. Each has a checkbox next to it. By default, all are checked, meaning all departments are visible.

Let's find only Marketing employees. Uncheck "Select All" first (this unchecks everything), then check only "Marketing." Click OK. Your spreadsheet now shows only the header row and the three Marketing employees: Lisa Rodriguez, Sarah Johnson, and Jessica Taylor.

Notice the row numbers on the left: they're colored blue and some numbers are missing (2, 4, 6, 8). This indicates filtering is active and some rows are hidden, not deleted. The data is still there—Excel is just hiding rows that don't match your criteria.

To remove the filter and see all data again, click the Department dropdown and check "Select All," then click OK. Alternatively, click the Clear button in the Data tab's Sort & Filter group.

Advanced Text Filtering

Basic checkbox filtering works well for exact matches, but sometimes you need more sophisticated text filtering. In the Department dropdown, you might notice "Text Filters" at the bottom of the list. Click this to reveal options like:

  • Equals/Does not equal: Exact matches
  • Begins with/Ends with: Partial matching based on text position
  • Contains/Does not contain: Find text anywhere in the cell
  • Custom Filter: Build complex criteria with AND/OR logic

Let's use "Begins with" to find employees whose last names start with specific letters. Click the dropdown arrow in Last_Name, select Text Filters → Begins with, enter "J" in the dialog box, and click OK. This shows only Johnson—any employee whose last name starts with "J."

Numeric Filtering

Numeric columns offer different filtering options tailored to numbers. Click the Salary column's dropdown arrow and you'll see "Number Filters" instead of "Text Filters." These options include:

  • Greater than/Less than: Show values above or below a threshold
  • Between: Show values within a range
  • Top 10: Show highest or lowest values
  • Above/Below average: Statistical filtering

Try filtering for salaries greater than $65,000. Choose Number Filters → Greater Than, enter 65000, and click OK. You'll see employees earning more than $65,000: Mike Chen, David Kim, Emily Brown, and Ryan Anderson.

Date Filtering

Date filtering provides timeline-based options. The Hire_Date dropdown shows "Date Filters" with options like:

  • Before/After: Show dates earlier or later than a specific date
  • Between: Show dates within a date range
  • This month/This year: Dynamic filters based on current date
  • Last month/Next quarter: Relative date filtering

Filter for employees hired after January 1, 2021. Choose Date Filters → After, select the date, and click OK. You should see Lisa Rodriguez, Emily Brown, and Jessica Taylor—employees hired in 2021 or later.

Combining Multiple Filters

Filters work together, allowing complex queries. Remember our original scenario: finding Marketing employees hired after 2020 with ratings above 3.5? Let's build that query step by step.

First, clear any existing filters (Data → Clear). Now apply filters in sequence:

  1. Department: Uncheck all except Marketing
  2. Hire_Date: Date Filters → After → 1/1/2020
  3. Rating: Number Filters → Greater Than → 3.5

After applying all three filters, you should see only Lisa Rodriguez and Jessica Taylor—the exact answer to your manager's question. This demonstrates the power of combining filters for sophisticated data analysis.

Important: When multiple filters are active, they use AND logic by default. A row must satisfy ALL filter conditions to be visible. Excel doesn't provide built-in OR logic across columns through the filter interface, though you can achieve it through custom filters or advanced techniques.

Converting Data to Excel Tables

Everything we've covered so far works with regular cell ranges, but Excel Tables take data management to the next level. Tables aren't just formatted ranges—they're dynamic, intelligent data structures with built-in features that make analysis faster and more reliable.

Creating Your First Table

Select your entire data range (A1:G9), then navigate to Insert → Table. Excel opens the Create Table dialog showing your selected range and asking if your table has headers. Since our first row contains column names, ensure "My table has headers" is checked, then click OK.

Immediately, you'll notice several changes:

  • Your data now has alternating row colors (banded rows) for easier reading
  • Headers are bold and have a different background color
  • Filter dropdowns appear automatically in each header
  • A new Table Tools tab appears in the ribbon when you click anywhere in the table
  • Excel automatically names your table (probably "Table1")

These visual changes are just the beginning. Tables fundamentally change how Excel handles your data.

Understanding Table Behavior

Tables are dynamic—they automatically expand when you add data. Try this: click in cell A10 and enter a new employee record:

A10: 1009    B10: Tom    C10: Wilson    D10: Engineering    E10: 4/15/2023    F10: 73000    G10: 3.7

As soon as you press Tab to move to the next cell, Excel automatically expands the table to include row 10. The formatting extends automatically, and the table name now references A1:G10 instead of A1:G9.

This automatic expansion is crucial for data integrity. With regular ranges, adding new data often breaks formulas and pivot tables that reference the original range. Tables eliminate this problem by automatically adjusting references.

Structured References: A Better Way to Reference Data

Tables introduce structured references—a more intuitive way to reference table data in formulas. Instead of using cell references like A2:A9, you can use table and column names.

Let's create a formula to calculate the average salary. In cell I2, enter this formula:

=AVERAGE(Table1[Salary])

This formula references the entire Salary column in Table1, regardless of how many rows the table contains. If you add more employees, the average automatically includes them without modifying the formula.

Compare this to a traditional formula like =AVERAGE(F2:F9). If you add rows, you'd need to update the range to F2:F10, F2:F11, and so on. Structured references eliminate this maintenance burden.

Table Formatting and Design

Tables come with built-in design options that improve readability. With your table selected, examine the Table Tools Design tab. You'll find:

  • Table Style Options: Toggle banded rows, banded columns, first/last column emphasis
  • Table Styles: Pre-designed color schemes and formatting
  • Properties: Rename your table and control resize behavior

Let's rename our table to something meaningful. In the Table Name field (far left of the Design tab), replace "Table1" with "EmployeeData." Now our structured references become more readable: =AVERAGE(EmployeeData[Salary]).

Good table names are crucial for larger workbooks with multiple tables. Use descriptive names that indicate the table's purpose: SalesData, InventoryItems, CustomerFeedback.

Total Rows and Quick Calculations

Tables provide an easy way to add summary calculations. With your cursor anywhere in the table, check the "Total Row" option in the Table Style Options group. Excel adds a new row at the bottom of your table with "Total" in the first column.

Click in the Salary cell of the total row (F11 if you added Tom Wilson). You'll see a dropdown arrow—click it to reveal calculation options: None, Average, Count, Count Numbers, Max, Min, Sum, StdDev, and Var. Select "Average" to calculate the mean salary across all employees.

The total row uses structured references automatically. If you look at the formula bar, you'll see something like =SUBTOTAL(101,EmployeeData[Salary]). The SUBTOTAL function respects filters—if you filter the table to show only Marketing employees, the average in the total row updates to show only their salaries.

Converting Tables Back to Ranges

Sometimes you might need to convert a table back to a regular range (though this is rare). With your cursor in the table, go to Table Tools Design → Convert to Range. Excel removes table formatting and functionality while preserving the data and any formatting you applied.

Warning: Converting to a range breaks structured references in formulas. Use this feature only when absolutely necessary, and be prepared to update any formulas that reference the table.

Combining Tables with Sorting and Filtering

Tables enhance sorting and filtering with additional features and improved usability. Let's explore how tables make these operations more powerful.

Enhanced Filtering in Tables

Table filters include all the functionality we covered earlier, plus additional features. Notice that when you apply filters to a table, the filter indicators are more prominent, and the total row (if enabled) automatically adjusts calculations based on visible rows.

Try filtering the EmployeeData table to show only employees with ratings above 4.0. The total row's average calculation now shows the average salary of only high-performing employees, not all employees.

Tables also remember filter states better than regular ranges. If you save and reopen the workbook, table filters remain applied, whereas range filters might be lost.

Slicer: Visual Filtering for Tables

Tables support slicers—visual filter controls that make filtering more intuitive and user-friendly. With your cursor in the table, go to Table Tools Design → Insert Slicer. Select the columns you want to create slicers for—let's choose Department and Rating.

Excel creates floating panels with buttons for each unique value in the selected columns. Click "Marketing" in the Department slicer to filter for Marketing employees. Hold Ctrl and click "Sales" to show both Marketing and Sales employees. The slicer provides visual feedback about what's filtered and makes it easy to switch between different filter combinations.

Slicers are particularly valuable when sharing spreadsheets with non-technical users. Instead of explaining dropdown menus and filter criteria, users can simply click buttons to explore the data.

Sorting Tables

Sorting tables works identically to sorting ranges, but with improved visual feedback. Click any column header's dropdown arrow and you'll see sort options at the top: "Sort A to Z," "Sort Z to A," and "Sort by Color" (if you've applied conditional formatting).

For multi-column sorting, use the same Data → Sort dialog we covered earlier. The advantage with tables is that Excel automatically recognizes the table structure, making it less likely you'll accidentally include or exclude data during sorting.

Hands-On Exercise

Now it's time to apply everything you've learned. Create a new worksheet and build a more complex dataset to practice with. Enter this data about a company's product inventory:

A1: Product_ID    B1: Product_Name       C1: Category      D1: Supplier        E1: Stock_Level    F1: Unit_Cost    G1: Last_Ordered
A2: P001         B2: Wireless Mouse     C2: Electronics   D2: TechCorp        E2: 45            F2: 25.99        G2: 3/15/2023
A3: P002         B3: Office Chair       C3: Furniture     D3: ComfortPlus     E3: 12            F3: 189.50       G3: 2/22/2023
A4: P003         B4: Laptop Stand       C4: Electronics   D4: TechCorp        E4: 23            F4: 35.75        G4: 3/28/2023
A5: P004         B5: Desk Lamp          C5: Electronics   D5: BrightLights    E5: 8             F5: 42.25        G5: 1/10/2023
A6: P005         B6: Filing Cabinet     C6: Furniture     D6: ComfortPlus     E6: 6             F6: 125.00       G6: 3/5/2023
A7: P006         B7: Wireless Keyboard  C7: Electronics   D7: TechCorp        E7: 31            F7: 45.99        G7: 3/20/2023
A8: P007         B8: Conference Table   C8: Furniture     D8: ComfortPlus     E8: 3             F8: 450.00       G8: 2/15/2023
A9: P008         B9: Monitor            C9: Electronics   D9: ScreenMasters   E9: 18            F9: 275.50       G9: 3/25/2023

Now complete these tasks:

Task 1: Convert this data to a table named "InventoryData"

  • Select the range A1:G9
  • Insert a table with headers
  • Rename it to "InventoryData"

Task 2: Find products that need reordering

  • Filter for products with Stock_Level less than 15
  • Sort these products by Stock_Level (lowest first)
  • Which three products need immediate attention?

Task 3: Analyze supplier performance

  • Remove the previous filter
  • Sort by Supplier, then by Unit_Cost (highest to lowest within each supplier)
  • Which supplier provides the most expensive products on average?

Task 4: Create a summary analysis

  • Add a Total Row to show average Unit_Cost
  • Filter to show only Electronics products
  • Note how the Total Row average changes
  • Create slicers for Category and Supplier

Task 5: Complex filtering scenario

  • Your manager asks: "Show me all Electronics products from TechCorp with stock levels above 20, ordered by unit cost from cheapest to most expensive"
  • Apply the necessary filters and sorting to answer this question

Solutions:

  • Task 2: Products P004 (8), P005 (6), and P008 (3) need immediate attention
  • Task 3: ComfortPlus has the highest average unit cost among products shown
  • Task 5: Should show P001 (Wireless Mouse, $25.99) and P006 (Wireless Keyboard, $45.99)

Common Mistakes & Troubleshooting

Problem: Sorting Breaks My Data

Symptoms: After sorting, employee names don't match their departments, or data appears jumbled. Cause: You selected only part of your data range, so Excel sorted some columns but not others. Solution: Always select the complete data range including all related columns. Use Ctrl+Z to undo, then reselect properly. Prevention: Convert to tables—they prevent this issue by treating the entire table as a unit.

Problem: Filters Don't Show Expected Options

Symptoms: The filter dropdown is empty, or values you know exist don't appear in the list. Cause: Your data might have leading/trailing spaces, different data types in the same column, or merged cells. Solution: Clean your data by trimming spaces and ensuring consistent data types. Check for merged cells and unmerge them. Prevention: Maintain consistent data entry practices and validate data types regularly.

Problem: Table Won't Expand Automatically

Symptoms: New data appears below the table but isn't included in the table structure. Cause: There might be blank rows between the table and new data, or the new data isn't adjacent to the table. Solution: Ensure new data is entered in the row immediately below the table with no gaps. Alternatively, manually resize the table using the resize handle at the bottom-right corner.

Problem: Structured References Don't Work

Symptoms: Formulas using table names return errors or don't update when the table changes. Cause: Table names might contain spaces or special characters, or you might have typos in column names. Solution: Use simple, descriptive table names without spaces. Reference exact column names as they appear in headers. Use Excel's formula autocomplete to avoid typos.

Problem: Sorting Dates Doesn't Work Correctly

Symptoms: Dates sort alphabetically (January, April, March) instead of chronologically. Cause: Excel doesn't recognize the entries as dates—they're stored as text. Solution: Convert text to dates using Data → Text to Columns with Date format, or use date functions to reconstruct proper dates. Prevention: Enter dates in consistent formats Excel recognizes (MM/DD/YYYY, DD/MM/YYYY, etc.).

Problem: Can't Remove Filters

Symptoms: Filter arrows remain visible even after clicking Clear. Cause: You cleared filter criteria but didn't turn off the filter feature itself. Solution: Click Data → Filter to toggle off the filter arrows completely.

Pro Tip: When working with large datasets, always create a backup copy before applying complex sorts or filters. While Ctrl+Z can undo most operations, having a backup provides additional security for important data.

Summary & Next Steps

You've now mastered the fundamental tools for organizing and analyzing data in Excel. You can sort data to reveal patterns and trends, filter data to focus on specific subsets that answer business questions, and leverage Excel Tables to create dynamic, maintainable data structures.

Key concepts you've mastered:

  • Single and multi-level sorting to organize data systematically
  • Text, numeric, and date filtering to isolate relevant information
  • Creating and managing Excel Tables for enhanced data handling
  • Using structured references for more reliable formulas
  • Combining sorting and filtering for complex data analysis
  • Troubleshooting common data management problems

These skills form the foundation for more advanced Excel techniques. With clean, well-organized data, you're ready to tackle pivot tables, advanced formulas, and data visualization. The structured approach you've learned here—thinking about data organization before analysis—will serve you throughout your data career.

Immediate next steps:

  1. Practice these techniques with your own work data
  2. Convert existing spreadsheets to tables where appropriate
  3. Experiment with slicers and advanced filter combinations
  4. Learn about Excel's Data Validation features to maintain data quality
  5. Explore PivotTables for summarizing filtered and sorted data

Remember that data management is iterative. As you encounter new challenges in your work, return to these fundamentals. The combination of sorting, filtering, and tables can solve most data organization problems you'll face. Master these tools thoroughly, and you'll find that even complex data analysis becomes manageable and systematic.

Learning Path: Excel Fundamentals

Previous

Advanced Excel Tables: Expert-Level Sorting, Filtering & Data Management

Next

Master Excel Tables: Advanced Sorting, Filtering & Data Analysis

Related Articles

Microsoft Excel🔥 Expert

Mastering Excel Tables: Advanced Sorting, Filtering, and Data Structure Techniques

22 min
Microsoft Excel⚡ Practitioner

Master Excel Tables: Advanced Sorting & Filtering for Data Analysis

13 min
Microsoft Excel🌱 Foundation

Excel Tables, Sorting & Filtering: Master Data Organization for Business Analysis

13 min

On this page

  • Prerequisites
  • Understanding Your Data Structure
  • Mastering Excel Sorting
  • Single-Column Sorting
  • Multi-Column Sorting
  • Understanding Sort Behavior with Different Data Types
  • Filtering Data for Targeted Analysis
  • Applying Basic Filters
  • Advanced Text Filtering
  • Numeric Filtering
  • Date Filtering
  • Understanding Table Behavior
  • Structured References: A Better Way to Reference Data
  • Table Formatting and Design
  • Total Rows and Quick Calculations
  • Converting Tables Back to Ranges
  • Combining Tables with Sorting and Filtering
  • Enhanced Filtering in Tables
  • Slicer: Visual Filtering for Tables
  • Sorting Tables
  • Hands-On Exercise
  • Common Mistakes & Troubleshooting
  • Problem: Sorting Breaks My Data
  • Problem: Filters Don't Show Expected Options
  • Problem: Table Won't Expand Automatically
  • Problem: Structured References Don't Work
  • Problem: Sorting Dates Doesn't Work Correctly
  • Problem: Can't Remove Filters
  • Summary & Next Steps
  • Combining Multiple Filters
  • Converting Data to Excel Tables
  • Creating Your First Table
  • Understanding Table Behavior
  • Structured References: A Better Way to Reference Data
  • Table Formatting and Design
  • Total Rows and Quick Calculations
  • Converting Tables Back to Ranges
  • Combining Tables with Sorting and Filtering
  • Enhanced Filtering in Tables
  • Slicer: Visual Filtering for Tables
  • Sorting Tables
  • Hands-On Exercise
  • Common Mistakes & Troubleshooting
  • Problem: Sorting Breaks My Data
  • Problem: Filters Don't Show Expected Options
  • Problem: Table Won't Expand Automatically
  • Problem: Structured References Don't Work
  • Problem: Sorting Dates Doesn't Work Correctly
  • Problem: Can't Remove Filters
  • Summary & Next Steps