Forum Discussion
nice_boy
9 years agoRegular Visitor
DAX problem calculating value
Hello, I want to create measure in the table "TAB_1", which sums up tle values "VALUES" from the table "TAB_2" only then if in the table "TAB_2" appears "cont_id" bigger than 0. I enclose scree...
Anonymous
9 years agoNot applicable
To me it looks like you are overcompliating the measure itself. You already have the table relationships so just try this simple measure:
Values = CALCULATE( sum(TAB_2[VALUES]), TAB_2[cont_id] > 0 )