Free Microsoft 070-778 Exam Dumps Questions & Answers
| Exam Code/Number: | 070-778Join the discussion |
| Exam Name: | Analyzing and Visualizing Data with Power BI |
| Certification: | Microsoft |
| Free Question Number: | 155 |
| Publish Date: | Aug 08, 2026 |
| # of views: | 3856 |
|
|
|
You have a Power BI model that contains the following two tables:
* Sales(Sales_ID, sales_date, sales_amount, CustomerID)
* Customer(CustomerID, First_name, Last_name)
There is a relationship between Sales and Customer.
You need to create a measure to rank the customers based on their total sales amount.
Which DAX formula should you use?
You have two tables named CustomerVisits and Date in a Power BI model.
You create a measure to calculate the number of customer visits. You use the measure in the report shown in the exhibit. (Click the Exhibit.)
You discover that the total number of customer visits was 60,000, and that there were only 5,000 customer visits in August.
You need to fix the report to display the correct data for each month.
What should you do?
You have a table in Power BI Desktop as shown in the following exhibit.
You pivot the columns as shown in the following exhibit.
You need to resolve the error in row 3. The solution must preserve all the data.
What should you do?
Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.
After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.
You have a query for a table named Sales. Sales has a column named CustomerlD. The Data Type of CustomerlD is Whole Number.
You refresh the data and find several errors. You discover that new entries in the Sales table contain nonnumeric values.
You need to ensure that nonnumeric values in the CustomerlD column are set to 0.
Solution: From Query Editor, open Advanced Editor and add the following query step.
#"Replaced Errors" - Table.ReplaceErrorValues(s"Changed Type", {{"CustomerlD", 0}}) Does this meet the goal?