Complete the code to add a description to a measure in Power BI.
Measure = SUM(Sales[Amount]) -- [1]In Power BI DAX, comments are added using /* comment */ syntax. This helps document the measure.
Complete the code to add a tooltip description to a Power BI visual.
Visual.Tooltip = [1]Tooltips are text descriptions that explain visuals. They should be strings describing the visual.
Fix the error in the DAX measure documentation comment.
Total Sales = SUM(Sales[Amount]) [1]DAX supports block comments with /* */. Using // or # causes errors.
Fill both blanks to create a descriptive title and subtitle for a Power BI report page.
ReportPage.Title = [1] ReportPage.Subtitle = [2]
Titles and subtitles should be descriptive text strings to help users understand the report content.
Fill all three blanks to document a calculated column with a description and format string.
Profit Margin = DIVIDE(Sales[Profit], Sales[Amount]) [1] FORMAT(Profit Margin, [2]) -- [3]
Use block comments for description, a proper format string for percentage, and a clear comment explaining the format.