Bird
0
0

You wrote this DAX measure but get an error:

medium📝 Formula Fix Q6 of 15
Power BI - Basics and Architecture
You wrote this DAX measure but get an error:
Total Sales = SUM(Sales Amount)
What is the likely cause?
ATable name is incorrect
BSUM cannot be used in measures
CMissing square brackets around column name
DMeasure name cannot have spaces
Step-by-Step Solution
Solution:
  1. Step 1: Check DAX syntax for column references

    Column names must be enclosed in square brackets, e.g., [Sales Amount].
  2. Step 2: Identify the error cause

    Missing brackets cause syntax errors. SUM is valid, table name is not shown, and measure names can have spaces.
  3. Final Answer:

    Missing square brackets around column name -> Option C
  4. Quick Check:

    Column reference syntax = Use brackets [OK]
Quick Trick: Always use [ ] around column names in DAX [OK]
Common Mistakes:
  • Omitting brackets around columns
  • Thinking SUM is invalid in measures
  • Assuming measure names can't have spaces

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Power BI Quizzes