Dashboard Mode - String functions (LEFT, RIGHT, CONTAINS)
Dashboard Goal
Understand how to use string functions LEFT, RIGHT, and CONTAINS in Tableau to analyze customer data by extracting parts of text and checking for keywords.
Understand how to use string functions LEFT, RIGHT, and CONTAINS in Tableau to analyze customer data by extracting parts of text and checking for keywords.
| Customer ID | Full Name | Region | |
|---|---|---|---|
| 101 | Anna Smith | anna.smith@example.com | North |
| 102 | Bob Johnson | bob.j@example.com | South |
| 103 | Clara Lee | clara.lee@example.com | East |
| 104 | David Kim | dkim@example.com | West |
| 105 | Eva Brown | eva.brown@example.com | North |
LEFT([Full Name], FIND([Full Name], ' ') - 1)RIGHT([Email], LEN([Email]) - FIND([Email], '@'))CONTAINS([Email], 'example.com')+----------------------+----------------------+----------------------+ | First Name Extracted | Email Domain | Email Domain Count | | (KPI Card) | (KPI Card) | (Bar Chart) | +----------------------+----------------------+----------------------+ | Customer Details Table | | (with all string function columns) | +-----------------------------------------------------------------+
Applying a filter on Region updates all components to show data only for that region. For example, selecting 'North' filters the table, KPI cards, and bar chart to customers from North region.
Clicking on the bar chart segment for 'example.com' emails filters the table and KPI cards to only customers whose emails contain 'example.com'.
If you add a filter for Region = East, which components update and what data do they show?