This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
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
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 36 | |
| 33 | |
| 31 | |
| 24 | |
| 18 |
| User | Count |
|---|---|
| 68 | |
| 50 | |
| 33 | |
| 24 | |
| 24 |