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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
With which measure can I calculate the total of a selected year, ignoring a selected date range?
Explanation: In a orderbook I select a daterange to compare the orders of this year with last year.
But I also need a formula to calculate the total of the orderbook, ignoring the selected date range, but using the selected year.
Solved! Go to Solution.
Hi, @haraldjw
I am not sure how your measure looks like, but try something like below.
New measure =
CALCULATE (
[your measure],
FILTER (
ALL ( 'your datetable' ),
[datetable year column] = MAX ( [your selected year] )
)
)
Hi, My name is Jihwan Kim.
If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.
Linkedin: https://www.linkedin.com/in/jihwankim1975/
Hi, @haraldjw
I am not sure how your measure looks like, but try something like below.
New measure =
CALCULATE (
[your measure],
FILTER (
ALL ( 'your datetable' ),
[datetable year column] = MAX ( [your selected year] )
)
)
Hi, My name is Jihwan Kim.
If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.
Linkedin: https://www.linkedin.com/in/jihwankim1975/
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!