AND

Updated on

AND is a DAX function that checks whether all arguments are TRUE and returns TRUE only if all arguments are TRUE.

Syntax

AND(
   Logical1,
   Logical2
)
Argument Properties Description
Logical1 The logical values you want to test.
Logical2 The logical values you want to test.

Return Values

Returns true or false depending on the combination of values that you test.

Remarks

The AND function in DAX accepts only two (2) arguments. If you need to perform an AND operation on multiple expressions, you can create a series of calculations or, better, use the AND operator (&&) to join all of them in a simpler expression.

Example 1

The following formula shows the syntax of the AND function.

= IF(AND(10 > 9, -10 < -1), "All true", "One or more false"

Because both conditions, passed as arguments, to the AND function are true, the formula returns “All True”.

Example 2

The following sample uses the AND function with nested formulas to compare two sets of calculations at the same time. For each product category, the formula determines if the current year sales and previous year sales of the Internet channel are larger than the Reseller channel for the same periods. If both conditions are true, for each category the formula returns the value, “Internet hit”.

= IF( AND(  SUM( 'InternetSales_USD'[SalesAmount_USD])
           >SUM('ResellerSales_USD'[SalesAmount_USD])
          , CALCULATE(SUM('InternetSales_USD'[SalesAmount_USD]), PREVIOUSYEAR('DateTime'[DateKey] )) 
           >CALCULATE(SUM('ResellerSales_USD'[SalesAmount_USD]), PREVIOUSYEAR('DateTime'[DateKey] ))
          )
     , "Internet Hit"
     , ""
     )

Returns

Row Labels 2005 2006 2007 2008 Grand Total
Bib-Shorts
Bike Racks
Bike Stands Internet Hit
Bottles and Cages Internet Hit
Bottom Brackets
Brakes
Caps
Chains
Cleaners
Cranksets
Derailleurs
Fenders Internet Hit
Forks
Gloves
Handlebars
Headsets
Helmets
Hydration Packs
Jerseys
Lights
Locks
Mountain Bikes
Mountain Frames
Panniers
Pedals
Pumps
Road Bikes
Road Frames
Saddles
Shorts
Socks
Tights
Tires and Tubes Internet Hit
Touring Bikes
Touring Frames
Vests
Wheels
Grand Total

Other functions related to AND are:

Contribute » | Contributors: Rick de Groot
Microsoft documentation: https://learn.microsoft.com/en-us/dax/and-function-dax

2023-2024 © BI Gorilla. All rights are reserved. Information from Microsoft docs is property of Microsoft Corp. | Privacy Policy