Which statement best describes a key difference in how Tableau and Power BI connect to data sources?
Think about how each tool handles live data versus imported data.
Tableau supports live connections and extracts that require manual refresh. Power BI supports both live connections and imported data with scheduled refreshes.
You want to create highly interactive dashboards with custom visualizations and advanced analytics. Which tool is generally better suited for this purpose?
Consider which tool is known for flexibility and advanced visual options.
Tableau is known for its flexibility and advanced analytics capabilities, making it better for highly interactive and custom dashboards.
Given a sales table with columns: Product, Region, and SalesAmount, what is the result of this DAX measure?
Sales by Region = CALCULATE(SUM(Sales[SalesAmount]), ALLEXCEPT(Sales, Sales[Region]))
If the sales data is:
- Product A, Region East, 100
- Product B, Region East, 150
- Product A, Region West, 200
What is the value of Sales by Region for Product A in Region East?
ALLEXCEPT removes filters except for Region, so sum sales for all products in the same region.
The measure sums sales for all products in the same region. For Region East, total sales are 100 + 150 = 250.
In Power BI, you have two tables: Customers and Products. Customers can buy multiple products, and products can be bought by multiple customers. What is the best way to model this many-to-many relationship?
Think about how to represent many-to-many relationships in relational models.
A bridge table with CustomerID and ProductID allows modeling many-to-many relationships properly.
You have a Power BI dashboard connected to a large dataset with millions of rows. Users report slow loading times. Which approach will most effectively improve performance?
Think about reducing data volume processed by visuals.
Importing data with aggregated tables reduces data volume and speeds up dashboard performance compared to live queries.