Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now
Hello,
I have this table:
Order | Criteria 1 | Criteria 2 |
1 | 100% | BLANK Value |
2 | 90% | BLANK Value |
3 | 85% | 25% |
4 | 100% | 100% |
Now I want to create a Status column that basically follows the assumptions below:
- Criteria 1 threshold = 100%
- Criteria 2 threshold = 0%
- If one the above assumptions doesn't follow the threshold we should mark the line as Rejected
Example of my goal:
Order | Criteria 1 | Criteria 2 | Status |
1 | 100% | BLANK Value | Accepted |
2 | 90% | BLANK Value | Rejected |
3 | 85% | 25% | Rejected |
4 | 100% | 100% | Rejected |
Can you please help me?
I'm trying with this, but no success so far
PO Status =
VAR one_ = [Criteria 1]
VAR two_ = [Criteria 2]
RETURN
IF(ISBLANK(one_) || one_ < 1,IF(two_ > 0,"Rejected","Accepted"))
Solved! Go to Solution.
Hi @Anonymous
Please try
PO Status =
VAR one_ = [Criteria 1]
VAR two_ = [Criteria 2]
RETURN
IF ( one_ < 1 || two_ > 0, "Rejected", "Accepted" )
So simple and so effective. Many thanks !!
Hi @Anonymous
Please try
PO Status =
VAR one_ = [Criteria 1]
VAR two_ = [Criteria 2]
RETURN
IF ( one_ < 1 || two_ > 0, "Rejected", "Accepted" )
Check out the October 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
34 | |
14 | |
12 | |
12 | |
11 |
User | Count |
---|---|
59 | |
20 | |
20 | |
15 | |
11 |