You have a table named Sales with columns ProductID, Quantity, and Price. You rename the column Price to UnitPrice. Which DAX measure will correctly calculate total sales amount after this rename?
Remember that after renaming, the old column name Price no longer exists.
Option A uses the new column name UnitPrice correctly inside SUMX. Option A uses the old name Price which no longer exists and causes an error. Option A tries to multiply columns inside SUM which is invalid. Option A omits the table name prefix, causing an error.
You want to display a table visual in Power BI showing Customer Name, Order Date, and Sales Amount. You reorder columns in the data model to Order Date, Customer Name, Sales Amount. What will be the order of columns shown in the table visual?
Remember that column order in the data model does not automatically change visual column order.
Power BI visuals display columns in the order you add them to the visual, not the data model column order. So if you add Customer Name first, it appears first regardless of data model order.
You have a large dataset with columns OrderID, CustomerID, OrderDate, TempNotes, and DiscountCode. You want to reduce model size by removing unnecessary columns. Which column should you remove if TempNotes is only used for temporary comments during data import and never in reports?
Think about which columns are essential for analysis and which are not.
TempNotes is only for temporary use and not needed in reports, so removing it reduces model size without losing report functionality. Other columns are likely important for analysis.
You are designing a Power BI data entry form using Power Apps integration. The source table has columns FirstName, LastName, Email, Phone. Users want the form to show LastName first, then FirstName, then Email, and finally Phone. How do you ensure this column order in the form?
Think about where the form layout is controlled.
The form layout in Power Apps is controlled inside the app, so you reorder fields there manually. Changing data model column order does not affect form layout.
You renamed a column SalesAmount to TotalSales in your data model. After refreshing, some reports show errors. Which of the following is the most likely cause?
Think about what happens when you rename a column but do not update dependent objects.
Renaming a column breaks references in visuals and measures that still use the old name SalesAmount. This causes errors until those references are updated to TotalSales.