Imagine you have many reports, dashboards, and data sources in one BI project. Why is it important to organize these files into folders?
Think about how you find your documents on your computer.
Organizing files into folders helps users find and manage files easily, especially in large projects. It does not affect file size or tool requirements.
You have multiple reports for sales, finance, and marketing. Which naming style helps your team understand the file purpose quickly?
Think about what information helps identify the report at a glance.
Clear and descriptive file names with category and date help team members find and understand files quickly.
Given a Sales table with columns Region and SalesAmount, which DAX measure calculates total sales ignoring any filters on Region?
Measure = CALCULATE(SUM(Sales[SalesAmount]), ALL(Sales[Region]))
Think about how to remove filters on a specific column.
ALL(Sales[Region]) removes filters on Region, so the measure sums all sales regardless of Region filters.
You want to show how sales change over time for different product categories. Which visualization is best?
Think about how to show changes over time for multiple groups.
Line charts are best for showing trends over time. Coloring lines by category allows easy comparison.
Given a Sales table with CustomerID and SalesAmount, what error does this measure cause?
AvgSalesPerCustomer = AVERAGE(Sales[SalesAmount]) / DISTINCTCOUNT(Sales[CustomerID])
AvgSalesPerCustomer = AVERAGE(Sales[SalesAmount]) / DISTINCTCOUNT(Sales[CustomerID])
Think about what the formula calculates step by step.
The formula divides average sales by distinct customers, which is not the average sales per customer. The correct approach is total sales divided by distinct customers.