Which of the following best describes a data source in Power BI?
Think about where Power BI gets its data from before processing.
A data source is where Power BI connects to get raw data, such as databases, files, or online services.
After importing data from an Excel file into Power BI, what does the dataset contain?
Consider what Power BI uses to build reports after importing.
The dataset contains the actual data tables imported from the source, which can be used to create visuals.
Power BI fails to refresh data from a SQL Server data source. Which option shows the most likely cause?
Think about what is needed to access data from a database during refresh.
Incorrect or expired credentials prevent Power BI from connecting to the SQL Server to refresh data.
You need to build a Power BI report that shows real-time sales data updating every minute. Which data source type is best?
Real-time means data updates automatically and frequently.
Streaming datasets connected to live APIs allow Power BI to update visuals in real time.
Given this Power Query M code snippet that loads data from a CSV file, what will be the output of Table.RowCount(Source) if the CSV has 100 rows?
let
Source = Csv.Document(File.Contents("sales.csv"),[Delimiter=",", Columns=5, Encoding=1252, QuoteStyle=QuoteStyle.None])
in
Table.RowCount(Source)Consider the type returned by Csv.Document and what Table.RowCount expects.
Csv.Document returns a list of lists, not a table, so Table.RowCount raises an error.