Forum Discussion
Calculate total year, ignoring selected date range
- 5 years ago
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.
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.