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! Learn more

Reply
hemingt
Helper V
Helper V

is it possible to restrict the max value of x-axis according to another measure of other table

I have two tables.

I create a measure Max_Week according to one table.

and created a Chart according to the other table.

I want to restrict the x-axis max value according to the measure Max_week. Is it possible?

Thank you!

 

7 REPLIES 7
hemingt
Helper V
Helper V

Is there any suggestion? Thank you!

You Graph is already responding to the slicer. Do you want to stop that?

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

The x-axis max value is always 1917.

I want the Chart show as below.

 

if FixVersion selected as FMR2001, the max x-axis Week value should be 1917.

if FixVersion selected as FMR2002, the max x-axis value Week should be 1915.

if FixVersion not selected or all selected, the x-axis value should be 1917.

After I created a summarized table. I am able to restrict it below the value. Now it is not cumulative total. that need to be worked out

 

 

Table = SUMMARIZE(FILTER(Tasks,Tasks[Type]="END"),Tasks[FixVersion],"Max week",max(Tasks[Week]))

Count New = CALCULATE(COUNTROWS(Tasks), filter(Tasks,Tasks[Week]<=maxx(RELATEDTABLE('Table'),'Table'[Max week])))

 

 

Table is joined on the "fixed version" with Task Table.

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

yes, but I want to the cumulative data. I have a try, and still could not get the cumulative data.

Anonymous
Not applicable

Hi @hemingt ,

You can try to use following measure formula if it suitable for your requirement:

Acumulative Count =
VAR __week =
    MAX ( 'Weeks'[Week] )
RETURN
    CALCULATE (
        COUNTROWS ( 'Tasks' ),
        FILTER ( ALLSELECTED ( Tasks ), [Week] <= __week ),
        VALUES ( Tasks[Type] )
    )

Regards,

Xiaoxin Sheng

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