I am trying to union two tables (CMSum1 and CMSum2).
Any reason why the grouping column order is different than the way they are ordered here? Seems to be ok for CMSum2
CMSum1 = SUMMARIZECOLUMNS(CoreMeasure[YearMo],CoreMeasure[Pop Health Area],CoreMeasure[Division],CoreMeasure[CM Category],CoreMeasure[Measure], CoreMeasure[HiLow],FILTER(CoreMeasure,CoreMeasure[MetricType]=1),
"Num",SUM(CoreMeasure[PassFailChg]),
"Denom",CALCULATE(COUNTROWS(CoreMeasure)),
"Value",CALCULATE(sum(CoreMeasure[PassFailChg])/COUNTROWS(CoreMeasure)
))
Any reason why the grouping column order is different than the way they are ordered here? Seems to be ok for CMSum2
CMSum1 = SUMMARIZECOLUMNS(CoreMeasure[YearMo],CoreMeasure[Pop Health Area],CoreMeasure[Division],CoreMeasure[CM Category],CoreMeasure[Measure], CoreMeasure[HiLow],FILTER(CoreMeasure,CoreMeasure[MetricType]=1),
"Num",SUM(CoreMeasure[PassFailChg]),
"Denom",CALCULATE(COUNTROWS(CoreMeasure)),
"Value",CALCULATE(sum(CoreMeasure[PassFailChg])/COUNTROWS(CoreMeasure)
))