Forum Discussion
blytonpereira
Helper II
7 years agoSummarize over columns from Different Tables
Hello I would like to use the SUMX function with Summarize over columns from different tables. I have a table named "Region" with a single column also named "Region". I have a second table n...
AkhilAshok
Solution Sage
7 years agoDoes these 2 tables, Region and P2, relate to a common fact table? If yes, then you have to SUMMARIZE over the common fact table to which these 2 tables are linked to:
Measure = SUMX ( SUMMARIZE ( Fact, Region[Region], P2[P2] ), [Measure] )