Bird
0
0

Which DAX function is best to replace blank values with a specific number in Power BI?

easy📝 Conceptual Q2 of 15
Power BI - Data Cleaning with Power Query
Which DAX function is best to replace blank values with a specific number in Power BI?
AIFBLANK()
BCOALESCE()
CREPLACEBLANK()
DISBLANK()
Step-by-Step Solution
Solution:
  1. Step 1: Identify function to handle blanks

    COALESCE() returns the first non-blank value, useful to replace blanks with a default.
  2. Step 2: Compare with other options

    ISBLANK() checks for blanks but does not replace; IFBLANK() and REPLACEBLANK() do not exist in DAX.
  3. Final Answer:

    COALESCE() is best to replace blank values -> Option B
  4. Quick Check:

    Replace blanks = COALESCE() [OK]
Quick Trick: Use COALESCE() to replace blanks with defaults [OK]
Common Mistakes:
  • Using ISBLANK() to replace values instead of check
  • Assuming IFBLANK() exists
  • Trying to use REPLACEBLANK() which is not a DAX function

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Power BI Quizzes