Forum Discussion
instdes
4 years agoFrequent Visitor
Multiplying Values IF Value Exists in One Column
I currently have a measure that multiplies two column numbers together: Formula = CALCULATE(SUM('Employee'[Effort]) * SUM('Employee'[Completion])) however sometimes the "Completion" column d...
- 4 years ago
Thank you for your response. Yes, I ended up using this formula:
FormulaNull = CALCULATE(SUM('Employee'[Effort]) * IF(SUM('Employee'[Completion]) = BLANK(), 1, SUM('Employee'[Completion])))
Thingsclump
4 years agoResolver V
Hi instdes
Did you try using ISBLANK along with IF? If it's blank, return 1. If not, then return actual value.
Thanks
instdes
4 years agoFrequent Visitor
Thank you for your response. Yes, I ended up using this formula:
FormulaNull = CALCULATE(SUM('Employee'[Effort]) * IF(SUM('Employee'[Completion]) = BLANK(), 1, SUM('Employee'[Completion])))