Forum Discussion
Anonymous
3 years agoNot applicable
Division: No numerator
Hello, I would like to write a measure, which would divide Column1 by Column2, and provide 0 when there is no numerator, i.e. value in Column1. Whereas, currently I get a blank.
- 3 years ago
Hi Anonymous
You can tryMeasure1 = SUMX ( 'Table', COALESCE ( DIVIDE ( 'Table'[Column1], 'Table'[Column2] ), 0 ) )