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

How to stop the graph plot if value is reached its maximum

Capture.PNG

 

I Have onje report where i need to stop the graph plot after it reaching maximum value.In the above picture the IN_WAVE_PERCENATGE(Green) is reached 100% in 3 days only.I want to stop the graph plot once its reach its maximum percentage instaed of its dragging till 25 days with same percentage(Here cumulative sum is used in table)

 

1 ACCEPTED SOLUTION

@Anonymous ,

 

The built-in slicer can't be dynamically changed based on the values in the column. As a workaround, you may create several measures on %wave and other percentage columns using DAX like pattern below to filter the 100% value:

Result =
IF ( MAX ( [%WAVE] ) < 1, MAX ( [%WAVE] ), BLANK () )

Community Support Team _ Jimmy Tao

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

3 REPLIES 3
v-yuta-msft
Community Support
Community Support

@Anonymous ,

 

You can create a report level filter on [DAY] column and set a filter like "less than 6". Then the line chart will be filtered in less than 6 days.

 

Community Support Team _ Jimmy Tao

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

Anonymous
Not applicable

But 6th day is not fixed one.the no of days is dynamic

@Anonymous ,

 

The built-in slicer can't be dynamically changed based on the values in the column. As a workaround, you may create several measures on %wave and other percentage columns using DAX like pattern below to filter the 100% value:

Result =
IF ( MAX ( [%WAVE] ) < 1, MAX ( [%WAVE] ), BLANK () )

Community Support Team _ Jimmy Tao

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

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.