By Fatskills Exam Guides Team — the exam nerds behind 28,500+ quizzes and 2.1M practice questions across 500+ global exams.
(For Salesforce Admins Who Need to Build, Secure, and Scale Analytics Fast)
Einstein Analytics (now rebranded as Tableau CRM) is Salesforce’s native analytics platform that lets you explore data, build dashboards, and embed AI-driven insights—without leaving Salesforce. Think of it as a self-service BI tool that sits inside your org, pulling data from Salesforce (and external sources) to answer questions like: - "Which of our top 10% of accounts are at risk of churning?" - "What’s the average deal size by region, and how does it trend over time?" - "Which sales reps are consistently missing their quotas, and why?"
If you ignore Tableau CRM, you’re stuck with: ❌ Static reports that require manual exports to Excel (and are outdated by the time they’re built).❌ No predictive insights—you’re flying blind on customer health, sales trends, or support bottlenecks.❌ Shadow IT—your sales/marketing teams will start using external tools (like Power BI or Tableau Desktop), creating data silos and security risks.
Real-world scenario:You’re a Salesforce Admin at a SaaS company. The VP of Sales demands a real-time dashboard showing pipeline health, win rates, and forecast accuracy—by rep, region, and product. They want it embedded in Salesforce, updated hourly, and accessible on mobile. Without Tableau CRM, you’d spend weeks writing SOQL queries, exporting data, and manually updating spreadsheets. With it, you build this in under 2 hours.
✅ Salesforce org with Tableau CRM enabled (check under Setup → Analytics → Settings).✅ System Administrator permissions.✅ Sample data (Opportunities, Accounts, Users) in your org.
Id
Name
Amount
StageName
CloseDate
AccountId
OwnerId
Type
LeadSource
Probability
Sales_Pipeline_Dataset
⚠️ If data is missing, check field-level security (FLS) in Salesforce Setup.
Pipeline_by_Stage
Total Won Revenue
Account.Name
Open Opportunities
Sales_Pipeline_Dashboard
500px
⚠️ If the schedule fails, check the dataflow job logs (under "Data Manager" → "Monitor").
Object_Purpose
Opportunity_Pipeline
Team_Purpose
Sales_Pipeline_Health
OwnerId = "$User.Id"
❌ Not a dashboard or lens.
"How do you restrict a sales rep to only see their own Opportunities in a dashboard?"
❌ Not by sharing settings (that’s for Salesforce records, not Tableau CRM).
"What’s the difference between a dataset and a lens?"
Lens: A saved exploration of a dataset (like a query).
"Which feature automatically detects patterns in your data?"
Build a dashboard that shows Case Resolution Time by Support Agent, filtered to the last 30 days. Include: 1. A bar chart of average resolution time by agent.2. A table of top 5 longest-open cases.3. A metric showing total open cases.
Subject
Status
CreatedDate
ClosedDate
Owner.Name
AVG(ClosedDate - CreatedDate)
Status = "Closed"
CreatedDate = LAST 30 DAYS
Status != "Closed"
CreatedDate ASC
COUNT(Id)
Support_Case_Resolution_Dashboard
Why it works:- The dataset pulls all Case data.- The lens calculates average resolution time.- The dashboard combines visualizations and filters for a complete view.
q = load "Dataset"; q = group q by 'Owner.Name'; q = foreach q generate 'Owner.Name' as 'Owner.Name', avg('Resolution_Time') as 'Avg_Resolution_Time';
Join 4M+ learners. Unlock unlimited quizzes, wrong-answer tracking, flashcards + reminders, study guides, and 1-on-1 challenges.