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

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
Switto
Helper IV
Helper IV

Visualizing with static and dynamic measures

Hi Team,

I am working on a visual to compare the FTEs for the Base and Current year.  Base year FTE will never change however current year FTE will change(with slicer).

 

For the base FTE measure:

mBase_FTE = CALCULATE(SUM('Region Penetration'[Total FTE]),
USERELATIONSHIP(Dim_Region[Region],'Region Penetration'[Region]))
 
For the current year measure:
mCurrent_FTE = SUM(Table[Current FTE])
 
after putting both the measures in the value field, it is coming as per the requirement however, while selecting the FY Year or other slicers, the "mBase_FTE" measure is also changing.
Is there a way to make the "mBase_FTE" static and don't change with slicers?
Thanks
S
1 ACCEPTED SOLUTION
Gabriel_Walkman
Continued Contributor
Continued Contributor

Do you use a separate calendar table? If yes, here's a suggestion:

mBase_FTE =

CALCULATE(

    SUM('Region Penetration'[Total FTE]),
    USERELATIONSHIP(Dim_Region[Region],'Region Penetration'[Region])),

    ALL( 'Calendar' )

)

 

If not (you should), then replace Calendar with whatever contains your year column, ie. 'Region Penetration'[FY Year]

 

Keep in mind that USERELATIONSHIP can result in trouble if you use RLS.

View solution in original post

2 REPLIES 2
Gabriel_Walkman
Continued Contributor
Continued Contributor

Do you use a separate calendar table? If yes, here's a suggestion:

mBase_FTE =

CALCULATE(

    SUM('Region Penetration'[Total FTE]),
    USERELATIONSHIP(Dim_Region[Region],'Region Penetration'[Region])),

    ALL( 'Calendar' )

)

 

If not (you should), then replace Calendar with whatever contains your year column, ie. 'Region Penetration'[FY Year]

 

Keep in mind that USERELATIONSHIP can result in trouble if you use RLS.

thanks for the quick reply @Gabriel_Walkman. The solution is working and thanks for the tip 🙂

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!

December 2025 Power BI Update Carousel

Power BI Monthly Update - December 2025

Check out the December 2025 Power BI Holiday Recap!

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.