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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
jrdwthomas
Regular Visitor

Measure using IF column and AND measure =

Hello all,

 

New to the world of DAX after years of using Microstrategy and Qlik.

 

I'm struggling to get my head around a few calculations/statements. Would someone be able to assist with my current issue:

 

if("MARKET" = 'CN' and "Value" < 0.001, 0,
if("MARKET" = 'JP' and "Value" < 0.001,0,
"Tot_gross")) as "Gross"

 

Market, Value and Tot_gross are all in the same table. When i try to calculate a new measure using the IF statement it doesn't let me select the neccessry column (in this case 'Market')

 

What am i doing wrong?

 

1 ACCEPTED SOLUTION
Greg_Deckler
Super User
Super User

@jrdwthomas Try:

 

Measure =
  VAR __Market = MAX('Table'[Market])
  VAR __Value = MAX('Table'[Value])
  VAR __TotGross = MAX('Table'[Tot_gross])
  VAR __Result = 
    SWITCH(TRUE(),
      __Market = "CN" && [Value] < 0.001,0,
      __Market = "JP" && [Value] < 0.001,0,
     [Tot_gross]
    )
RETURN
  __Result

When you have a measure, you have to wrap column references in an aggregator. Check out my YouTube channel, DAX For Humans. It is specifically geared toward teaching people that are new to DAX the fundamentals.

DAX For Humans - YouTube

 

 



Follow on LinkedIn
@ 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!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

2 REPLIES 2
jrdwthomas
Regular Visitor

Well that resultant syntax didn't look anything like what i expected. Seems i've got a lot of learning to do. The only thing i changed was the 

MAX('Table'[Tot_gross]) to instead use SUM('Table'[Tot_gross])

That seems to now give me the output needed.

 

Thank you very much for your quick assistance. Much appreciated

 

 

Greg_Deckler
Super User
Super User

@jrdwthomas Try:

 

Measure =
  VAR __Market = MAX('Table'[Market])
  VAR __Value = MAX('Table'[Value])
  VAR __TotGross = MAX('Table'[Tot_gross])
  VAR __Result = 
    SWITCH(TRUE(),
      __Market = "CN" && [Value] < 0.001,0,
      __Market = "JP" && [Value] < 0.001,0,
     [Tot_gross]
    )
RETURN
  __Result

When you have a measure, you have to wrap column references in an aggregator. Check out my YouTube channel, DAX For Humans. It is specifically geared toward teaching people that are new to DAX the fundamentals.

DAX For Humans - YouTube

 

 



Follow on LinkedIn
@ 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!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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