Complete the code to add a column to a table visual in Power BI.
Table.AddColumn(Source, "NewColumn", each [1])
To add a calculated column showing 10% more sales, use each [Sales] * 1.1.
Complete the DAX formula to create a measure that sums the Sales column.
Total Sales = [1](Sales[Amount])The SUM function adds all values in the Sales Amount column.
Fix the error in the DAX formula to calculate average sales per region.
Average Sales = CALCULATE(AVERAGE(Sales[Amount]), [1](Sales[Region]))The VALUES function returns the distinct regions to calculate average per region.
Fill both blanks to create a matrix visual grouping sales by Region and Product.
MatrixVisual.Rows = [1] MatrixVisual.Columns = [2]
Rows should be grouped by Region and columns by Product for the matrix visual.
Fill all three blanks to create a measure that calculates total sales for the current year.
Total Sales CY = CALCULATE([1](Sales[Amount]), [2](Sales[Date].[Year], Sales[Date].[Year] = YEAR(TODAY())), [3](Sales))
Use SUM to add sales, FILTER to filter current year, and ALL to remove other filters.