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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

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
Community Champion
Community Champion

@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


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
Greg_Deckler
Community Champion
Community Champion

@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


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...
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
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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

Top Solution Authors