Forum Discussion

learningOh's avatar
learningOh
Frequent Visitor
3 years ago
Solved

Measure placed in Table visual not showing total

i have this code that i will like to calculate the revenue earned this year if the particular name did not have any revenue last year but have revenue this year. if this condition is met, it will...
  • v-zhangti's avatar
    3 years ago

    Hi, learningOh 

     

    You can try the following methods. Add a new measure:

    Measure = 
    Var _table=SUMMARIZE('FACT','FACT'[Name],"Value",[Rev Gains])
    Return
    SUMX(_table,[Value])

    Is this the result you expect?

     

    Best Regards,

    Community Support Team _Charlotte

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