0
0
Power BIbi_tool~20 mins

SharePoint and OneDrive sources in Power BI - Practice Problems & Coding Challenges

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

Which of the following best describes how Power BI connects to a SharePoint folder to load files?

APower BI uses the SharePoint Folder connector to list all files in the folder and then allows filtering and combining files.
BPower BI connects directly to each file in SharePoint without listing the folder contents first.
CPower BI requires downloading files manually from SharePoint before importing them.
DPower BI uses the Web connector to access SharePoint files by URL only.
Attempts:
2 left
💡 Hint

Think about how Power BI handles multiple files in a SharePoint folder.

dax_lod_result
intermediate
1:30remaining
Calculating Total Sales from OneDrive Excel Source

You imported sales data from an Excel file stored in OneDrive. The table 'SalesData' has columns: Date, Product, and SalesAmount.

What is the result of this DAX measure?

 TotalSales = SUM(SalesData[SalesAmount]) 

Assuming the SalesAmount column has values: 100, 200, 150, 50.

A500
B150
C100
DSyntax Error
Attempts:
2 left
💡 Hint

SUM adds all values in the column.

visualization
advanced
2:00remaining
Best Visualization for File Size Distribution from SharePoint Folder

You loaded a SharePoint folder containing many files with different sizes. You want to show the distribution of file sizes grouped by file type.

Which visualization is best suited for this purpose in Power BI?

ALine Chart showing file size over time
BPie Chart showing count of files per file type
CStacked Column Chart showing total file size per file type
DTable showing file names and sizes
Attempts:
2 left
💡 Hint

Think about comparing total sizes by categories.

🔧 Formula Fix
advanced
1:30remaining
Troubleshooting SharePoint Folder Access Error

You try to connect Power BI to a SharePoint folder but get an error: 'Access Denied'. Which of the following is the most likely cause?

AThe SharePoint folder is empty and cannot be connected.
BYou do not have permission to access the SharePoint site or folder.
CPower BI does not support SharePoint folder connections.
DThe Excel files in the folder are corrupted.
Attempts:
2 left
💡 Hint

Think about permissions when accessing online folders.

🎯 Scenario
expert
3:00remaining
Combining Multiple Excel Files from OneDrive with Different Structures

You have multiple Excel files stored in OneDrive, each with sales data but different column orders and some missing columns. You want to combine them into one table in Power BI.

Which approach will handle this scenario best?

AUse the SharePoint Folder connector and rely on automatic column matching without transformations.
BManually download and combine files in Excel before importing to Power BI.
CImport only one file and ignore others to avoid mismatched columns.
DUse Power Query to import all files, promote headers, and use 'Append Queries' with 'Use First Row as Headers' and 'Column Matching' enabled.
Attempts:
2 left
💡 Hint

Think about how Power Query can transform and combine data with different structures.