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
Anonymous
Not applicable

Removing negative values for a table visual

I'm working on a project where I have calculated a figure between two base values. The results are in the left table and you can see some values are positive and some negative.

klemenid1_1-1695999095204.png

My next step is to only take the positive numbers and pivot them into a table on the right. I'm having a really hard time figuring out how to do this. If I use the new measure in the filters and select "is greater than or equal to" and type 0, it filters out results in my pivot table, not the base values. Is there a way to do this?

 

Here's the base formula to calculate the field if there's maybe an edit I can make to it. I only need anything that's equal or greater than 0.

Response = AVERAGEX('Dupes Removed',DATEDIFF('Dupes Removed'[Field 1],'Dupes Removed'[Field 2],day))

 

Cheers!

 

1 ACCEPTED SOLUTION
Greg_Deckler
Super User
Super User

@Anonymous I *think* you are going for this:

Measure =
  VAR __Table = 
    ADDCOLUMNS(
      'Dupes Removed',
      "__Diff", DATEDIFF('Dupes Removed'[Field 1], 'Dupes Removed'[Field 2], day)
    )
  VAR __Result = AVERAGEX( FILTER( __Table, [__Diff] > 0 ), [__Diff] )
RETURN
  __Result

@ 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
Greg_Deckler
Super User
Super User

@Anonymous I *think* you are going for this:

Measure =
  VAR __Table = 
    ADDCOLUMNS(
      'Dupes Removed',
      "__Diff", DATEDIFF('Dupes Removed'[Field 1], 'Dupes Removed'[Field 2], day)
    )
  VAR __Result = AVERAGEX( FILTER( __Table, [__Diff] > 0 ), [__Diff] )
RETURN
  __Result

@ 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...
Anonymous
Not applicable

Brilliant, thank you so much! THis was exactly it. I just updated to >= to capture zeros and it's exactly what I needed. I really appreciate the help, this is amazing!

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.