Forum Discussion

alycianw's avatar
alycianw
Frequent Visitor
2 years ago
Solved

Graph not dipslaying measure correctly

I have 3 columns in my data: Actuals, Budget and LE. I want to have a bar graph that shows Actuals (when avaliable), Budget for Past Months and LE for Future months Since there is data for past LE ...
  • Anonymous's avatar
    Anonymous
    2 years ago

    Hi alycianw ,

     

    Try the following expression

    Dynamic Value = 
    VAR CurrentDate = TODAY()
    VAR Actuals = SUM('Data Center Data'[Actuals])
    VAR Budget = SUM('Data Center Data'[Budget])
    VAR LE = SUM('Data Center Data'[LE])
    RETURN
        SWITCH(
            TRUE(),
            MAX('Data Center Data'[Date]) < CurrentDate, Actuals + Budget,
            MAX('Data Center Data'[Date]) >= CurrentDate, Actuals + LE,
            BLANK()  
        )

     

    Please feel free to correct me and provide more information if I have misunderstood you!

     

    Hope it helps!

     

    Best regards,
    Community Support Team_ Scott Chang

     

    If this post helps then please consider Accept it as the solution to help the other members find it more quickly.

  • alycianw's avatar
    2 years ago

    Resolved my issue by adding a new column identifying if it is a past or future month and based on that column it was able to filter out future months for budget and past months for LE. Thank you for the help