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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

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
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors