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
dinomaster
Frequent Visitor

IF AND dax Formula

Hey,

 

So I'm trying to add a column to filter the current month of the year. So far I've only been able to filter out the current month.

 

deletePresentMonth = if(value(Date[Month]) = MONTH(today());true;false)

 

What/How should I add another rule for the current year?

 

Thanks!

1 ACCEPTED SOLUTION
ovetteabejuela
Impactful Individual
Impactful Individual

Simply do an AND or &&, I usually use &&

 

State of Month = IF(YEAR(community[Date])=year(NOW()) && MONTH(community[Date]) = MONTH(NOW()),"Current Month","Previous Month")

 

hope this helps

View solution in original post

4 REPLIES 4
pinkdino99
New Member

Hi.

So I have ;

tbl One - Column This (either 1 or 2) - Column That (either A or B)

I want a new column Then where This = 2 AND That = B marked "YES"

 

THEN = IF('tbl One'[THIS] = "2")&& IF('tbl One'[That] = "B", "YES")

 

And it doesn't work...

Too few arguments were passed to the AND function. The minimum argument count for the function is 2.

 

Any DAX Jedi in the house ?

I know this is a bit late...

But the arguments error came up because you did not present an alternate to the "YES" true if statement.

 

Here is what I would change...

 

THEN = IF('tbl One'[THIS] = "2")&& IF('tbl One'[That] = "B", "YES", "NO")

ovetteabejuela
Impactful Individual
Impactful Individual

Simply do an AND or &&, I usually use &&

 

State of Month = IF(YEAR(community[Date])=year(NOW()) && MONTH(community[Date]) = MONTH(NOW()),"Current Month","Previous Month")

 

hope this helps

Perfect @ovetteabejuela,

 

Thank you a lot Smiley Wink

 

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.