Dashboard Mode - Why text functions clean messy data
Dashboard Goal
Understand how text functions in Google Sheets help clean messy data for better analysis.
Understand how text functions in Google Sheets help clean messy data for better analysis.
| Raw Data | Notes |
|---|---|
| John Doe | Extra spaces around name |
| jane.SMITH@example.com | Mixed case email |
| +1 (555) 123-4567 | Phone with symbols |
| New York | Extra spaces around city |
| alice@example.COM | Uppercase domain in email |
| Bob O'Neil | Name with apostrophe |
| 123 Main St. | Address with spaces |
=ARRAYFORMULA(TRIM(A2:A8))=ARRAYFORMULA(LOWER(A2:A8))=ARRAYFORMULA(REGEXREPLACE(A2:A8, "[^0-9]", ""))=ARRAYFORMULA({TRIM(A2:A8), LOWER(A2:A8), REGEXREPLACE(A2:A8, "[^0-9]", "")})+----------------+----------------+----------------+ | Clean Names | Lowercase Emails| Extract Numbers| | (KPI Card) | (KPI Card) | (KPI Card) | +----------------+----------------+----------------+ | Cleaned Data Table | +-------------------------------------------------+
Filters can be added to select specific rows or data types. When a filter is applied, all KPI cards and the cleaned data table update to show only the filtered data.
If you add a filter to show only rows containing phone numbers, which components update?