Why should DIVIDE be preferred over the division operator in DAX?
- A It handles division by zero gracefully without an explicit IF guard
- B It is more accurate
- C It supports more data types
- D It is required by the engine
Answer
It handles division by zero gracefully without an explicit IF guard
DIVIDE returns a specified alternate result, typically blank, instead of an error, and is also optimised internally.





