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
vsteinbahs
Helper I
Helper I

Filtering for rows with column value increase only

Hi,

I'm trying to figure out how to display rows in matrix visual where column values are only going up.  I've tried visual filters, but it won't do the trick.  Do I need to create a new measure for this?  Or perhaps use a different visual?

As shown in the attached screenshot, I want to show rows for Davis and Max only.  Any help is greatly appreciated.

Thank you.

rows with positive increase only.jpg

1 ACCEPTED SOLUTION
v-zhenbw-msft
Community Support
Community Support

Hi @vsteinbahs ,

 

We can create a measure and put it in Filter on this visual.

 

1. Create a calculate column to get the difference with the next day’s value.

 

increase = 
var _x = CALCULATE(SUM('Table'[value]),FILTER('Table',EARLIER('Table'[Date])='Table'[Date]+1&&EARLIER('Table'[Student name])='Table'[Student name]))
return
IF(ISBLANK(_x),BLANK(),'Table'[value]-_x)

 

F1.jpg

 

2. Then we need to create a measure and put it in Filter on this visual.

 

Measure = 
var _min = CALCULATE(MIN('Table'[increase]),FILTER(ALLSELECTED('Table'),'Table'[Student name]=MAX('Table'[Student name])))
return
_min

 

F2.jpg

 

F3.jpg

 

If it doesn’t meet your requirement, could you please show the exact expected result based on the table that you have shared?

BTW, pbix as attached.

 

Best regards,

 

Community Support Team _ zhenbw

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

4 REPLIES 4
v-zhenbw-msft
Community Support
Community Support

Hi @vsteinbahs ,

 

We can create a measure and put it in Filter on this visual.

 

1. Create a calculate column to get the difference with the next day’s value.

 

increase = 
var _x = CALCULATE(SUM('Table'[value]),FILTER('Table',EARLIER('Table'[Date])='Table'[Date]+1&&EARLIER('Table'[Student name])='Table'[Student name]))
return
IF(ISBLANK(_x),BLANK(),'Table'[value]-_x)

 

F1.jpg

 

2. Then we need to create a measure and put it in Filter on this visual.

 

Measure = 
var _min = CALCULATE(MIN('Table'[increase]),FILTER(ALLSELECTED('Table'),'Table'[Student name]=MAX('Table'[Student name])))
return
_min

 

F2.jpg

 

F3.jpg

 

If it doesn’t meet your requirement, could you please show the exact expected result based on the table that you have shared?

BTW, pbix as attached.

 

Best regards,

 

Community Support Team _ zhenbw

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hi @v-zhenbw-msft 

I tried to apply the same calculated column to another slightly different table using the same syntax you provided, but it won't populate values.  Any ideas what could be wrong?

calculated column syntax 

parry2k
Super User
Super User

@vsteinbahs do you want to show only those students that always have a +ve increase?

 

 



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

Yes sir, that's what needed.

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.