Which of the following best describes how Power BI connects to a SharePoint folder to load files?
Think about how Power BI handles multiple files in a SharePoint folder.
The SharePoint Folder connector lists all files in the folder, enabling users to filter and combine files easily. This is the recommended way to connect to SharePoint folders.
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.
SUM adds all values in the column.
The SUM function adds all values in the SalesAmount column: 100 + 200 + 150 + 50 = 500.
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?
Think about comparing total sizes by categories.
A Stacked Column Chart effectively shows total file sizes grouped by file type, making it easy to compare size distribution visually.
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?
Think about permissions when accessing online folders.
'Access Denied' usually means the user lacks permission to access the SharePoint site or folder. Permissions must be granted to connect successfully.
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?
Think about how Power Query can transform and combine data with different structures.
Power Query allows importing multiple files, promoting headers, and appending queries with column matching, handling different column orders and missing columns effectively.