Which of the following best describes a star schema data model in Tableau?
Think about how fact and dimension tables relate in a simple, clear structure.
A star schema has one central fact table linked to several dimension tables, making queries efficient and easy to understand.
Given a sales fact table with columns OrderID, ProductID, and SalesAmount, and a product dimension table with ProductID and Category, which LOD expression correctly calculates total sales by category without double counting?
Total Sales = SUM([Sales].[SalesAmount])
Use a function that keeps the category filter but removes other filters on the product table.
FIXED keeps the filter on Category while removing other filters, ensuring correct aggregation by category.
You have a data model with sales data by region, country, and city. Which Tableau visualization best helps users explore this hierarchy interactively?
Look for a visualization that shows parts within parts and allows drilling down.
A treemap with drill-down lets users explore hierarchical data easily by clicking through levels.
You created a relationship between a customer dimension and sales fact table in Tableau, but your sales totals are unexpectedly high. What is the most likely cause?
Check how many records in each table relate to the other.
Many-to-many relationships can cause duplication in aggregations, inflating totals.
Your Tableau dashboard is slow because the data model has many large tables joined with complex relationships. Which approach will best improve performance while keeping data accuracy?
Think about reducing data size and pre-aggregating to speed up queries.
Extract filters and aggregated tables reduce data volume and complexity, improving dashboard speed without losing accuracy.