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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Baris2836
Frequent Visitor

Too few arguments were passed to the AND function

Hello,

I am having trouble with this formula. I need to make a measure which should answer these 2 different conditions in Power BI,

but I see this error. 

Can you help me to understand ?

 

Aggressive/Non Aggressive2 = IF(SUM(Sheet1[LTREQ])>SUM(PMD[Total LT]),AND(IF(SUM(Sheet1[Quantity])>SUM(PMD[Maximum order quantity]),"Aggressive")))
 
Thank you in advance.
Baris 
1 ACCEPTED SOLUTION
Greg_Deckler
Super User
Super User

@Baris2836 Try:

Aggressive/Non Aggressive2 = 
  IF(
    AND( 
      SUM(Sheet1[LTREQ])>SUM(PMD[Total LT]),
      SUM(Sheet1[Quantity])>SUM(PMD[Maximum order quantity])
    ),
    "Aggressive", 
    "Non Aggressive"
  )

or:

Aggressive/Non Aggressive2 = 
  IF(
      SUM(Sheet1[LTREQ])>SUM(PMD[Total LT]) 
      && 
      SUM(Sheet1[Quantity])>SUM(PMD[Maximum order quantity]),
    "Aggressive", 
    "Non Aggressive"
  )

@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

2 REPLIES 2
Syk
Super User
Super User

It looks like you're trying to do a nested if statement. You CAN do that and I think all you would need to do is delete your AND function. Then your if statement would read:
if condition 1 is true then if condition 2 is true then "Aggressive" else blank

You should also be able to use 1 if statement and rewrite this as

Aggressive/Non Aggressive2 =
IF (
    SUM ( Sheet1[LTREQ] ) > SUM ( PMD[Total LT] )
        && ( SUM ( Sheet1[Quantity] ) > SUM ( PMD[Maximum order quantity] ) ),
    "Aggressive"
)

Using && as your AND

Greg_Deckler
Super User
Super User

@Baris2836 Try:

Aggressive/Non Aggressive2 = 
  IF(
    AND( 
      SUM(Sheet1[LTREQ])>SUM(PMD[Total LT]),
      SUM(Sheet1[Quantity])>SUM(PMD[Maximum order quantity])
    ),
    "Aggressive", 
    "Non Aggressive"
  )

or:

Aggressive/Non Aggressive2 = 
  IF(
      SUM(Sheet1[LTREQ])>SUM(PMD[Total LT]) 
      && 
      SUM(Sheet1[Quantity])>SUM(PMD[Maximum order quantity]),
    "Aggressive", 
    "Non Aggressive"
  )

@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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