Forum Discussion
hushpuppies
2 years agoFrequent Visitor
Need help with measure
Hi PowerBI Experts! Here's the current measure for "Remark" If(isblank(Sum(PS_Financials[CurrentBudget])), if( Sum(PS_Financials[Actual]) > 15000,"At Risk",if( Sum(PS_Financials[Actual]) > 0,...
- 2 years ago
Hi hushpuppies
Your first condition says that SUM ( PS_Financials[CurrentBudget] ) must be blank before proceeding to the next. However, the row in question is showing zero. Try changing ISBLANK ( SUM ( PS_Financials[CurrentBudget] ) ) to ISBLANK ( SUM ( PS_Financials[CurrentBudget] ) ) || SUM ( PS_Financials[CurrentBudget] ) = 0
danextian
Super User
2 years agoHi hushpuppies
Your first condition says that SUM ( PS_Financials[CurrentBudget] ) must be blank before proceeding to the next. However, the row in question is showing zero. Try changing ISBLANK ( SUM ( PS_Financials[CurrentBudget] ) ) to ISBLANK ( SUM ( PS_Financials[CurrentBudget] ) ) || SUM ( PS_Financials[CurrentBudget] ) = 0
hushpuppies
2 years agoFrequent Visitor
Thanks danextian - it worked!