Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

Reply
Anonymous
Not applicable

DAX Help

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

Not Shipping Cond = IF('BR '[Q_12_MO]=0 && 'BR 003'[Q_THRU_TON]=0, 1, BLANK())
Not Shipping = If ([Not Shipping Cond]="1", "Not Shipping", BLANK())

I tried my needed condition also in pbi, but it thrown some error
Result_ = IF(
  [Not Shipping Cond]= "1",
  "Not Shipping",
  IF(
    [PCT ON PGM] == "No Assemblies Shipped",
    "Outside Tolerance",
    IF(
      [PCT ON PGM] < 90 || [PCT ON PGM] > 110,
      "Outside Tolerance",
      "Acceptable"
    )
  )
)

PCT ON PGM Is in text format



please help
2 REPLIES 2
JoBI
Resolver II
Resolver II

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

Ritaf1983
Super User
Super User

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

 

Regards,
Rita Fainshtein | Microsoft MVP
https://www.linkedin.com/in/rita-fainshtein/
Blog : https://www.madeiradata.com/profile/ritaf/profile

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.