Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
8 years ago
Solved

SUMX - How do sum information from one table into another

I would like sum in a lookupvalue. Is that possible or is there another command(s) that I need to look at to achieve my desired outcome? I have a budget table with a field and would like to scan a t...
  • v-chuncz-msft's avatar
    8 years ago

    Anonymous,

     

    You may add a calculated column as follows.

    Column =
    SUMX (
        FILTER ( 'Transaction', 'Transaction'[_link] = Budget[_link] ),
        'Transaction'[_amt]
    )