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 truncate graph

I have a measure f(x) and need to create a line graph. let's say f(0)=0, f(1)=1, f(2)=2, f(3)=2.2, f(4)=2.5, f(5)=2.7, f(6)=3, f(7)=3, f(8)=3...f(21)=3. My end users wants to stop graph at a point when f(x) doesn't change it value. In my example I should show only f(0), f(1)..f(6). They don't want to see f(7) on a graph at all. Is it possible?If possible, how can I modify my function?Thanks a lot in advance!

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

@Anonymous 

 

You may add a new measure and take a look at Show items with no data.

Measure 2 =
VAR k =
    SELECTEDVALUE ( 'Table'[x] )
RETURN
    IF (
        [Measure]
            <> CALCULATE (
                [Measure],
                TOPN (
                    1,
                    FILTER ( ALLSELECTED ( 'Table'[x] ), 'Table'[x] < k ),
                    'Table'[x], DESC
                )
            ),
        [Measure]
    )

 

Community Support Team _ Sam Zha
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

1 REPLY 1
v-chuncz-msft
Community Support
Community Support

@Anonymous 

 

You may add a new measure and take a look at Show items with no data.

Measure 2 =
VAR k =
    SELECTEDVALUE ( 'Table'[x] )
RETURN
    IF (
        [Measure]
            <> CALCULATE (
                [Measure],
                TOPN (
                    1,
                    FILTER ( ALLSELECTED ( 'Table'[x] ), 'Table'[x] < k ),
                    'Table'[x], DESC
                )
            ),
        [Measure]
    )

 

Community Support Team _ Sam Zha
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.