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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Bharathi_99
Helper IV
Helper IV

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 I
Resolver I

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 @Bharathi_99 

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

 

Helpful resources

Announcements
PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.