Which statement best describes a dataflow entity in Power BI?
Think about where dataflows store and prepare data before it is used in reports.
Dataflow entities are tables created and stored in Power BI service using Power Query. They allow data to be reused across multiple reports and datasets.
Given a dataflow entity named SalesData with a column OrderID, which DAX measure correctly counts the number of unique orders?
Count unique order IDs, not just total rows.
DISTINCTCOUNT counts unique values in a column. COUNT counts non-blank values but not unique. SUM adds numbers, and COUNTROWS counts rows of a table, not a column.
You have a dataflow entity with daily sales data. Which visualization best shows sales trends over time?
Think about which chart type clearly shows changes over time.
Line charts are best for showing trends over time because they display continuous data points connected by lines.
Which approach improves performance when designing dataflow entities for large datasets?
Reducing data size early helps speed up processing.
Filtering data early in Power Query reduces the amount of data loaded and processed, improving performance. Loading all data or avoiding incremental refresh can slow down processing.
A dataflow entity refresh fails with the error: "Data source credentials are invalid." Which option is the most likely cause?
Think about what "credentials" refers to in data refresh.
Invalid credentials errors usually mean the username or password used to access the data source is incorrect or expired. Syntax errors or report corruption cause different errors.