Forum Discussion

FJV's avatar
FJV
Frequent Visitor
3 years ago
Solved

Explicit vs implicit measure with value on the one side

Consider the following situation with to tables in a optional one (A)-to-many (B) relation and an value on the one side:   Table A TableA_ID, Value A, 10 B, 20 C, 30   Table B TableB_ID, Des...
  • daXtreme's avatar
    3 years ago

     

     

    // Given:
    // A ( 1 -- one-way-filtering --> : ) B 
    
    [Your Measure] =
    SUMX(
        SUMMARIZE(
            'Table B',
            'Table A'[TableA_ID],
            'Table A'[Value]
        ),
        'Table A'[Value]
    )

     

     

     In Power BI it DOES MATTER which column you pull from which table... so you have to be careful how you code your measures.