Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more
Hi all,
I have below condition
| IIf([Q_12_MO]=0 And [Q_THRU_TON]=0,"Not Shipping", IIf([PCTONPGM]="No Assemblies Shipped","Outside Tolerance", IIf([PCTONPGM]<90 Or [PCTONPGM]>110,"Outside Tolerance","Acceptable"))) |
I need to get this in pbi
Q_12_MO and Q_THRU_TON is in decimal Number format
I created below to get Not Shipping condition
Hello, as PCTONPGM is in text format you can not compare it with number.
You can try the following:
Result_ = IF(
[Not Shipping Cond]= "1",
"Not Shipping",
IF(
[PCT ON PGM] == "No Assemblies Shipped",
"Outside Tolerance",
IF(
VALUE([PCT ON PGM]) < 90 || VALUE([PCT ON PGM]) > 110,
"Outside Tolerance",
"Acceptable"
)
)
)
Hope this helps
Hi @Anonymous
Please provide sample data that covers your issue or question completely, in a usable format (not as a screenshot).
https://community.powerbi.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-...
Please show the expected outcome based on the sample data you provided.
https://community.powerbi.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523
If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!
Check out the July 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 30 | |
| 28 | |
| 23 | |
| 21 | |
| 19 |
| User | Count |
|---|---|
| 41 | |
| 32 | |
| 18 | |
| 18 | |
| 15 |