Forum Discussion
marcos_osorio
7 years agoHelper II
Problem with SUM
HI, i have a formula who works like this:
TH Total Unit Margin = CALCULATE(SUM('BI Analysis'[Amount])/SUM('BI Analysis'[Qtty]),YEAR('BI Analysis'[DATE RECORD])>2017,'Type of Data'[TYPE] = "Result")
The problem is that i have some products that makes SUM('BI Analysis'[Qtty]) zero. So if i filter for this products the value is inifinity.
How can I prevent to appear that value?
Thanks
- Anonymous7 years ago
Use the DIVIDE function, it accounts for a divide by zero error
3 Replies
- AnonymousNot applicable
Use the DIVIDE function, it accounts for a divide by zero error
- marcos_osorioHelper II
Thank you very much!
I have a lot to learn of Power BI.
Thanks Again!
- v-yulgu-msftMicrosoft Employee
Hi marcos_osorio,
You can use an IF statement.
TH Total Unit Margin = IF ( SUM ( 'BI Analysis'[Qtty] ) = 0, BLANK (), CALCULATE ( SUM ( 'BI Analysis'[Amount] ) / SUM ( 'BI Analysis'[Qtty] ), YEAR ( 'BI Analysis'[DATE RECORD] ) > 2017, 'Type of Data'[TYPE] = "Result" ) )
Best regards,Yuliana Gu