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 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss 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
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
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 | |
| 26 | |
| 23 | |
| 23 | |
| 14 |
| User | Count |
|---|---|
| 46 | |
| 33 | |
| 20 | |
| 18 | |
| 16 |