Complete the code to add the Key Influencers visual to the report.
Insert a [1] visual from the Visualizations pane.
The Key Influencers visual is specifically designed to analyze factors that influence a selected metric.
Complete the step to select the metric to analyze in the Key Influencers visual.
Drag the [1] field into the 'Analyze' bucket of the Key Influencers visual.
The 'Analyze' bucket requires the metric you want to understand, such as Sales Amount.
Fix the error in the DAX formula to create a measure for the Key Influencers visual.
Total Sales = SUM([1])The SUM function requires a column reference in the format Table[Column], such as Sales[Amount].
Fill both blanks to filter the Key Influencers visual to only show data for 2023.
Filter = FILTER(Sales, YEAR(Sales[Date]) [1] 2023 && Sales[Region] [2] "North")
The YEAR function is compared with '=' to select 2023. The region comparison uses '=' for equality in DAX.
Fill all three blanks to create a calculated column that categorizes sales as High, Medium, or Low for the Key Influencers visual.
Sales Category = IF(Sales[Amount] [1] 1000, "High", IF(Sales[Amount] [2] 500, "Medium", [3]))
The first condition checks if Amount is greater than 1000 for 'High'. The second checks if Amount is greater or equal to 500 for 'Medium'. Otherwise, it assigns 'Low'.