Forum Discussion

haraldjw's avatar
haraldjw
Frequent Visitor
5 years ago
Solved

Calculate total year, ignoring selected date range

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.

  • 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/

2 Replies

  • 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/

  • negi007's avatar
    negi007
    Icon for Community Champion rankCommunity Champion

    haraldjw you may create a seperate measure for each year like below

     

    Vol_2019 = calculate(sum(volume), year=2019)

     

    let me know if you need something else.