Forum Discussion

JesseV's avatar
JesseV
Frequent Visitor
4 years ago
Solved

measure that returns another column value based on the current month

I'm looking for a measure that returns the % based on the current month from the following table:     Datum (Date type) Verwachte voortgang (% type) Jan 9% Feb 18% Mar 28% Ap...
  • JesseV's avatar
    JesseV
    4 years ago

    I ended up cracking it by adding Calculate before the whole thing:

    Verwachtte vooruitgang = 
    CALCULATE(SELECTEDVALUE('Voortgang %'[Verwachte voortgang]),
        Filter('Voortgang %','Voortgang %'[Maand] = MONTH(TODAY()))
    )

     
    Thanks a ton for your assistance onurbmiguel_