You have monthly sales data for the last year. Which Power BI visual should you use to clearly show the sales trend over time?
Think about which visual best shows changes over time.
A Line Chart is best for showing trends over time because it connects data points in a continuous flow, making it easy to see increases or decreases month by month.
Given a sales table with columns: ProductCategory, SalesAmount, and Date, which DAX measure correctly calculates total sales for the 'Electronics' category?
Total Electronics Sales = CALCULATE(SUM(Sales[SalesAmount]), Sales[ProductCategory] = "Electronics")Use CALCULATE to filter the data before summing.
Option B uses CALCULATE with a filter condition correctly. Option B is valid DAX but less efficient. Option B and D are invalid syntax.
You have a fact table with sales data and several dimension tables like Products and Customers. What is the best relationship type to connect the fact table to dimension tables in Power BI?
Think about how data flows in a star schema from dimensions to facts.
In a star schema, dimension tables filter the fact table. This is done with a one-to-many relationship from dimension (one) to fact (many) with single direction filtering.
Your Power BI report is slow because it uses a large sales dataset. Which approach will best improve report performance?
Consider how data is accessed and calculations are done.
DirectQuery mode queries the data source directly, reducing memory use. Avoiding calculated columns reduces processing load. Importing large data or many complex visuals slows performance.
What error will this DAX measure produce?Total Sales Last Year = CALCULATE(SUM(Sales[SalesAmount]), SAMEPERIODLASTYEAR(Sales[Date]))
Total Sales Last Year = CALCULATE(SUM(Sales[SalesAmount]), SAMEPERIODLASTYEAR(Sales[Date]))
Check the requirements for time intelligence functions in Power BI.
SAMEPERIODLASTYEAR requires the date column to be from a properly marked Date table with continuous dates. Without this, it produces an error. The syntax is correct, and SUM can be used inside CALCULATE.