Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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:
Solved! Go to Solution.
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.
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 🙂
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 61 | |
| 43 | |
| 40 | |
| 38 | |
| 22 |
| User | Count |
|---|---|
| 178 | |
| 125 | |
| 116 | |
| 77 | |
| 54 |