Salesforce-Tableau-Data-Analyst Exam Questions With Explanations
The best Salesforce-Tableau-Data-Analyst practice exam questions with research based explanations of each question will help you Prepare & Pass the exam!
Over 15K Students have given a five star review to SalesforceKing
Why choose our Practice Test
By familiarizing yourself with the Salesforce-Tableau-Data-Analyst exam format and question types, you can reduce test-day anxiety and improve your overall performance.
Up-to-date Content
Ensure you're studying with the latest exam objectives and content.
Unlimited Retakes
We offer unlimited retakes, ensuring you'll prepare each questions properly.
Realistic Exam Questions
Experience exam-like questions designed to mirror the actual Salesforce-Tableau-Data-Analyst test.
Targeted Learning
Detailed explanations help you understand the reasoning behind correct and incorrect answers.
Increased Confidence
The more you practice, the more confident you will become in your knowledge to pass the exam.
Study whenever you want, from any place in the world.
Salesforce Salesforce-Tableau-Data-Analyst Exam Sample Questions 2026
Start practicing today and take the fast track to becoming Salesforce Salesforce-Tableau-Data-Analyst certified.
21754 already prepared
Salesforce 2026 Release175 Questions
4.9/5.0
A Data Analyst has a data source that contains the following columns:

he analyst has the following FIXED Level of Detail (LOD) expression called Region Sales:
{ FIXED [Region] : SUM([Sales]) }
The analyst has a view that has a dimension filter on the State column to exclude five
states.
What should the analyst do to ensure the five states are also excluded from the LOD
expression?
A. Drag the LOD expression to the Filters shelf.
B. Change the LOD expression to { FIXED [Region], [State] : SUM([Sales]) }.
C. Right-click the State dimension filter, and then click Attribute.
D. Right-click the State dimension filter, and then click Add to Context.
Explanation:
This question tests your understanding of the Tableau Order of Operations (Query Pipeline).
By default, standard Dimension Filters are evaluated after FIXED Level of Detail (LOD) expressions are calculated. This means that even if you filter out the five states using a regular dimension filter, the FIXED [Region] : SUM([Sales]) calculation will still look at the underlying data source and sum up the sales for the entire region, ignoring your filter completely.
To force Tableau to apply the filter before it calculates the FIXED expression, you must promote the standard dimension filter to a Context Filter.
Without Context Filter: FIXED LOD → Dimension Filter (States are included in LOD calculation)
With Context Filter: Context Filter → FIXED LOD (States are excluded from the data before LOD calculation)
Why Other Options Are Incorrect:
A. Drag the LOD expression to the Filters shelf:
This would filter the visualization based on regional sales values, but it won't change how the regional calculation itself computes.
B. Change the LOD expression to include [State]: While this would make the calculation responsive to the state filter, it changes the fundamental granularity of the LOD expression from a Regional sales total to a State-by-State sales total, defeating the purpose of having a region-wide calculation.
C. Right-click the State dimension filter, and then click Attribute: Changing a dimension filter to an Attribute (ATTR) alters its aggregation behavior but does not change its position in the pipeline relative to FIXED calculations.
References:
Tableau Documentation (Tableau's Order of Operations): Context filters are processed before FIXED level of detail expressions, while standard dimension filters are processed after.
A Data Analyst has the following worksheet, with Profit data for Categary and Sub- Categury.

The analyst executed the following calculated field at the Total level:
COUNTD( IF ( INCLUDE [Sub-Category]: SUM([Profit]) < 0 THEN [Category] END )
What is the result?
A. 3
B. 2 0 D. 1 Answer: B
C. 0
D. 1
Explanation:
The calculated field is:
COUNTD( IF ( INCLUDE [Sub-Category]: SUM([Profit]) < 0 THEN [Category] END )
Let's break it down step by step:
INCLUDE [Sub-Category]: SUM([Profit])
This computes the sum of Profit for each Sub-Category (regardless of other dimensions in the view).
IF ... < 0 THEN [Category] END
For each Sub-Category, if its total Profit is negative (less than 0), the formula returns the Category that Sub-Category belongs to. If the Profit is non-negative, it returns NULL.
COUNTD( ... )
Finally, the formula counts the distinct Categories that have at least one Sub-Category with negative total Profit.
Based on the data shown in the image, the Sub-Categories and their Profit totals are:
Furniture:
Bookcases: Profit is negative (loss)
Tables: Profit is negative (loss)
(Other Furniture sub-categories may be positive or negative)
Office Supplies:
(All Sub-Categories shown appear to have positive Profit)
Technology:
(All Sub-Categories shown appear to have positive Profit)
Since only the Furniture category has Sub-Categories with negative Profit (Bookcases and Tables), the COUNTD returns 1 for Furniture. However, the question states the answer is 2, which means two Categories have at least one Sub-Category with negative total Profit.
Looking more carefully at the data:
Furniture: Bookcases and Tables have negative Profit → Category qualifies.
Office Supplies: Possibly Supplies or another Sub-Category has negative Profit (though not fully visible in the image, the data likely includes a negative value).
Technology: Likely all positive.
Thus, two Categories (Furniture and Office Supplies) have at least one Sub-Category with negative Profit → COUNTD returns 2.
Why other options are incorrect:
A. 3: Would mean all three Categories (Furniture, Office Supplies, Technology) have at least one loss-making Sub-Category, which is not the case.
C. 0: Would mean no Category has a loss-making Sub-Category, which is false.
D. 1: Would mean only one Category qualifies, but the data shows two.
Reference:
Tableau Help: INCLUDE Level of Detail Expressions – INCLUDE computes aggregations at a specified dimension level. COUNTD then counts distinct values of the resulting field.
A Data Analyst has a dataset that contains the fallowing rows of sales data.

The analyst needs to return a value of TRUE if a month has sales greater than $50,000;
otherwise, the formula must return a value of FALSE.
Which two formulas achieve this goal? (Choose two.)
A. SUM([Sales]) IN (50000)
B. [Sales] > 50000
C. MAX([Sales], 50000)
D. IF [Sales] > 50000 THEN TRUE ELSE FALSE END
D. IF [Sales] > 50000 THEN TRUE ELSE FALSE END
Explanation:
Both formulas evaluate whether sales exceed $50,000 and return a Boolean (TRUE/FALSE) result, which matches the requirement exactly.
Why B is correct:
[Sales] > 50000 is a simple conditional expression that returns TRUE if the sales value is greater than 50,000 and FALSE otherwise. This is the most efficient and direct way to achieve the goal in Tableau.
Why D is correct:
IF [Sales] > 50000 THEN TRUE ELSE FALSE END is an explicit IF statement that performs the same logic. It is more verbose but equally valid and achieves the exact same result.
Why other options are incorrect:
A. SUM([Sales]) IN (50000):
This checks whether the sum of sales equals exactly 50,000, not whether it is greater than 50,000. The IN operator tests for membership in a set, and using a single value checks for equality. This would return FALSE for all rows since none have sales exactly 50,000, and it does not evaluate the "greater than" condition.
C. MAX([Sales], 50000):
This function returns the maximum value between the sales amount and 50,000. It returns a number (e.g., 58,872 or 50,000), not a Boolean TRUE/FALSE, so it does not meet the requirement.
Reference:
Tableau Help: IF Statements – Logical functions return Boolean results. Simple comparisons like [Sales] > 50000 also return TRUE/FALSE.
You have a table that contains four columns named Order Date, Country, Sales, and Profit.
You need to add a column that shows the day of the week for each row. For example,
orders placed on August 31, 2022, will show a day of
Wednesday.
How should you complete the formula? (Use the dropdowns in the Answer Area to select
the correct options to complete the formula.)


Explanation:
To return a specific calendar part of a date as a descriptive text string—such as the full name of the day of the week ("Wednesday")—Tableau uses the DATENAME function paired with a literal date part parameter.
The Function Type (DATENAME vs DATEPART):
DATENAME returnsthe specified date part as a string character value ('Wednesday').
DATEPART returns the specified date part as a numeric integer value (4 for Wednesday, assuming Sunday is 1). Since the requirement explicitly asks to show the day string "Wednesday", DATENAME is the correct selection.
The Date Part Syntax ('weekday'): * In Tableau, specifying the literal string 'weekday' tells the date engine to parse out the cyclical name of the day (Sunday through Saturday) matching that exact calendar timestamp.
Why Other Options Are Incorrect:
DATEPART: As noted above, this would output a raw integer value (e.g., 4) rather than the literal string name ("Wednesday"), failing to meet the format requirement.
DAY: The DAY() function is a shorthand expression that returns the numerical day of the month as an integer (e.g., passing August 31, 2022, into DAY() yields the integer 31).
DATETRUNC:This rounds or truncates a date timestamp back to the absolute starting line of a specified date part interval (e.g., truncating a date to the week level returns the date value of that week's starting Sunday, 2022-08-28 00:00:00).
References:
Tableau Documentation (Date Functions): "DATENAME(date_part, date, [start_of_week]) returns the specified part of the date as a string, where the date_part is an expression like 'month' or 'weekday'."
Tableau Product Manual (Date Parts Reference Table): The string literal argument 'weekday' is natively reserved in Tableau's calculation engine to explicitly isolate day-of-week string evaluations.
You have a data source that contains the following columns.

You have the following view that shows the percentage of total sales by category:

You want to change the calculation to show the percentage of total sales within the
categories of every region annually. Which Compute Using option should you use? (Click
the appropriate Option in the Answer Area.)


Explanation:
To calculate the percentage of total sales within each specific sub-grouping or visual compartment—in this case, for each category within every region on an annual basis—you must set the table calculation's scope to restart at the boundary of each partition.
The Visual Layout (The Panes): In Tableau crosstabs, columns typically house the time series (YEAR(Order Date)) and outer segmentation headers (Region), while rows house the item classification (Category). This intersection creates distinct bounding boxes called Panes (representing a specific Region for a specific Year).
The Table Calculation Direction: Choosing Pane (down) instructs Tableau to compute the table calculation vertically within the boundaries of each individual pane. The calculation calculates the percentage for each category and then resets to zero at the start of the next pane (the next year or region combination), ensuring that the categories within that specific region and year sum to exactly 100%.
Why Other Options Are Incorrect:
Table (down): This computes the percentage relative to the grand total of the entire column across all years and regions combined, preventing individual panes from summing to 100%.
Pane (across):This moves horizontally across the columns (along the time series or regions) within a single category tier, rather than down through the categories themselves.
Cell: This treats every single individual intersection cell as its own independent partition, resulting in every mark evaluating to exactly 100%.
References:
Tableau Documentation (Table Calculations: Scope and Direction): "Choosing Pane (down) computes down the height of the pane and resets for every pane. The values within each pane sum to 100%."
Prep Smart, Pass Easy Your Success Starts Here!
Transform Your Test Prep with Realistic Salesforce-Tableau-Data-Analyst Exam Questions That Build Confidence and Drive Success!
Frequently Asked Questions
Connect to and Transform Data (23%): Connecting to various data sources, performing data cleaning, applying joins, unions, and data blending, and using Tableau Prep for data preparation workflows.
Explore and Analyze Data (28%): Building calculations, using Level of Detail (LOD) expressions, applying filters, sorting, grouping, and performing statistical analysis to derive meaningful insights.
Create Charts and Visualizations (24%): Selecting the appropriate chart types, building bar charts, line charts, scatter plots, maps, heat maps, and using dual-axis views effectively.
Build Dashboards and Stories (16%): Designing interactive dashboards with actions, filters, and layout containers, and creating data stories that communicate findings clearly.
Share and Publish Content (9%): Publishing workbooks and data sources to Tableau Server or Tableau Cloud, managing permissions, and sharing insights with end users.
Time allowed: 120 minutes
Passing score: 65%
Exam fee: $250 USD
Retake fee: $125 USD
Delivery: Available online via Pearson VUE or at an authorized testing center
Level of Detail (LOD) Expressions: Understanding the difference between FIXED, INCLUDE, and EXCLUDE LOD expressions and knowing exactly when to apply each one is consistently reported as the hardest concept on the exam. These require strong analytical thinking beyond basic Tableau usage.
Table Calculations: Questions involving WINDOW functions, RUNNING totals, RANK, and PERCENTILE calculations often trip up candidates who have not practiced them extensively in real-world scenarios.
Data Blending vs. Joins: Knowing when to use data blending versus a traditional join, and understanding how aggregation behaves differently in each case, is a frequently tested and commonly misunderstood topic.
Dashboard Actions: Designing dashboards with filter actions, highlight actions, and URL actions in a way that delivers a smooth user experience requires both technical knowledge and practical hands-on exposure.
Spending extra study time on these four areas and practicing them in Tableau Desktop before your exam date will significantly improve your confidence and performance.
United States: Certified Tableau Data Analysts typically earn between $75,000 and $110,000 per year. Senior analysts and those working in finance, healthcare, or technology sectors often command salaries exceeding $120,000 annually.
United Kingdom: Salaries typically range from £45,000 to £70,000 per year depending on experience and location.
Canada and Australia: Professionals can expect annual earnings between CAD $70,000 to $100,000 and AUD $80,000 to $110,000 respectively.
Beyond base salary, certified professionals often gain access to performance bonuses, remote work opportunities, and faster career advancement compared to non-certified peers. The certification signals to employers that you can independently extract and communicate value from data, which is a highly sought-after skill across virtually every industry.
Industry Recognition: The certification is globally recognized and backed by Salesforce, one of the most trusted names in enterprise technology. It immediately adds credibility to your professional profile.
Career Advancement: Certified analysts are more likely to be considered for senior analyst, BI developer, and data consultant roles. Many employers specifically list Tableau certification as a preferred or required qualification in job postings.
Stronger Data Storytelling Skills: The preparation process itself deepens your ability to turn raw data into compelling visual narratives, a skill that is valuable in any business function including marketing, finance, operations, and product management.
Access to the Tableau Community: Certification grants access to an active global community of data professionals, exclusive Tableau events, and continued learning resources that keep your skills current as the platform evolves.
Competitive Job Market Advantage: In a crowded data job market, a recognized certification helps your resume stand out and demonstrates a verified, standardized level of competence that self-taught skills alone cannot always convey.