- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

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," On Forecast",blank())), If( isblank([#Spend %]) ,"",If( [#Spend %] > 1,"Over Budget",If( [#Spend %] > 0.9 ,"Issue", If( [#Spend %] > 0.75, "At Risk","On Forecast")))) )
The item in red box should return "At Risk" under Remark column. May I know why is it not the case?
Basically, this is the logic that I want :-
- IF Actuals > 90% of the budget and Actual < Current Budget, then "Issue" (flagged as Purple)
- IF Actuals > Current Budget, then "Over Budget" (flagged as Red)
- IF Actuals < 90% of the budget and > 75% of the budget, then "At Risk" (flagged as Orange)
- IF Actuals < 75% of the budget, then "On Forecast" (flagged as Green)
- IF Budget = 0 and Actuals > 15,000 ($20,000 x 75%), then "At Risk" (flagged as Orange)
- IF Budget = 0 and Actuals < 15,000 ($20,000 x 75%), then "On Forecast" (flagged as Green)
Thank you!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

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
Dane Belarmino | Microsoft MVP | Proud to be a Super User!
Did I answer your question? Mark my post as a solution!
"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

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
Dane Belarmino | Microsoft MVP | Proud to be a Super User!
Did I answer your question? Mark my post as a solution!
"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Helpful resources
Subject | Author | Posted | |
---|---|---|---|
11-03-2024 10:32 PM | |||
09-27-2024 05:56 AM | |||
09-13-2024 01:25 PM | |||
09-27-2024 12:36 AM | |||
Anonymous
| 11-19-2023 06:21 PM |
User | Count |
---|---|
109 | |
89 | |
81 | |
55 | |
46 |