0
0
Power BIbi_tool~20 mins

Excel data import in Power BI - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Excel Import Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Understanding Excel Data Import Options in Power BI

When importing Excel data into Power BI, which option correctly describes the difference between 'Import' and 'DirectQuery' modes?

ABoth 'Import' and 'DirectQuery' load data into Power BI's memory but differ in refresh speed.
B'Import' queries the Excel file live, while 'DirectQuery' loads data into Power BI's memory.
C'Import' loads data into Power BI's memory, while 'DirectQuery' queries the Excel file live without loading data.
D'Import' only works with CSV files, while 'DirectQuery' works with Excel files.
Attempts:
2 left
💡 Hint

Think about whether data is stored inside Power BI or accessed live.

dax_lod_result
intermediate
2:00remaining
DAX Measure for Counting Rows from Imported Excel Data

You imported an Excel table named 'SalesData' into Power BI. Which DAX measure correctly counts the total number of rows in 'SalesData'?

ATotalRows = COUNTROWS(SalesData)
BTotalRows = COUNT(SalesData)
CTotalRows = SUM(SalesData)
DTotalRows = DISTINCTCOUNT(SalesData)
Attempts:
2 left
💡 Hint

Think about which DAX function counts rows, not values.

visualization
advanced
2:00remaining
Best Visualization for Showing Excel Data Import Status

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?

ALine chart showing cumulative number of imports over time
BStacked column chart showing counts of success and failure per day
CTable visual listing each import with status and duration columns
DPie chart showing percentage of success vs failure overall
Attempts:
2 left
💡 Hint

Consider which visual best compares categories over time.

data_modeling
advanced
2:00remaining
Handling Multiple Excel Sheets in Power BI Data Model

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?

ACreate a relationship between 'Customers[CustomerID]' and 'Orders[CustomerID]' columns
BUse 'Customers' table only and ignore 'Orders' table
CAppend 'Customers' and 'Orders' tables into one combined table
DCreate a calculated column in 'Orders' that duplicates 'Customers' data
Attempts:
2 left
💡 Hint

Think about how tables relate in real life: customers place orders.

🔧 Formula Fix
expert
2:00remaining
Troubleshooting Excel Data Import Refresh Failure

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?

AThe Excel file is open in another program during refresh
BThe Excel file is saved in CSV format instead of XLSX
CPower BI does not support Excel files larger than 1 MB
DThe Excel file has unsupported features like macros or tables with merged cells
Attempts:
2 left
💡 Hint

Think about what Excel features might cause format issues during import.