When importing Excel data into Power BI, which option correctly describes the difference between 'Import' and 'DirectQuery' modes?
Think about whether data is stored inside Power BI or accessed live.
'Import' mode loads the Excel data into Power BI's internal storage for fast analysis. 'DirectQuery' mode keeps the data in the Excel file and queries it live, so no data is stored inside Power BI.
You imported an Excel table named 'SalesData' into Power BI. Which DAX measure correctly counts the total number of rows in 'SalesData'?
Think about which DAX function counts rows, not values.
COUNTROWS counts the number of rows in a table. COUNT and SUM expect a column, and DISTINCTCOUNT counts unique values in a column.
You want to create a Power BI dashboard visual that clearly shows the status of Excel data imports over time (e.g., success, failure, duration). Which visual type is best suited for this?
Consider which visual best compares categories over time.
A stacked column chart allows you to compare success and failure counts side by side for each day, making trends easy to spot. Pie charts don't show time trends, tables are less visual, and line charts show cumulative counts but not status breakdown.
You imported two Excel sheets: 'Customers' and 'Orders'. To analyze orders by customer, what is the best way to model these tables in Power BI?
Think about how tables relate in real life: customers place orders.
Creating a relationship between the CustomerID columns allows Power BI to connect orders to customers for analysis. Appending tables mixes different data types, ignoring orders loses data, and duplicating data wastes space and complicates updates.
After importing an Excel file into Power BI, the data refresh fails with an error: 'OLE DB or ODBC error: External table is not in the expected format.' What is the most likely cause?
Think about what Excel features might cause format issues during import.
Unsupported features like macros, merged cells, or complex tables can cause Power BI to fail reading the Excel file format. The file being open usually causes a different error. Power BI supports large files, and CSV is a different format, not XLSX.