Which of the following reasons best explains why Power BI is widely used in business intelligence?
Think about how easy it is for non-technical users to visualize data with Power BI.
Power BI is popular because it lets users create interactive and visual reports easily, even without coding skills.
A company wants to monitor sales data in real-time to make quick decisions. Why is Power BI a good choice for this?
Consider how Power BI handles data connections and refreshes.
Power BI supports live connections and scheduled refreshes, enabling near real-time data visualization.
Given a sales table with columns: ProductCategory, SalesAmount, which DAX measure correctly calculates total sales per category?
TotalSalesByCategory = CALCULATE(SUM(Sales[SalesAmount]), ALLEXCEPT(Sales, Sales[ProductCategory]))
Think about how to keep the filter on ProductCategory while summing sales.
Option A sums sales amounts while keeping the filter on ProductCategory, correctly calculating totals per category.
Which Power BI visual is best to show how sales change month by month over a year?
Consider which chart type best shows changes over time.
Line charts are ideal for showing trends over time because they clearly display continuous data points.
What error does this DAX measure cause?AverageSales = AVERAGE(Sales[SalesAmount], Sales[Region])
Check the number of arguments the AVERAGE function accepts.
The AVERAGE function in DAX accepts only one column argument; providing two causes a syntax error.