需求
下列矩阵中,在月份列不按照原始数据的month_no排列时,能正确计算销售额占比,但是当月份按照month_no排序时就会出错,需要解决这个问题。
实现
month % = divide([amount],calculate([amount],all('date'[month desc])))
//排序后每个月份的占比在矩阵中都显示100%
//原因是虽然视觉对象中不可见month_no,但实际后台的代码在聚合时考虑了month_no的影响(如下图)
month%#2 = divide([amount],calculate([amount],all('date'[month desc],'date'[month no])))
//考虑排序列month no的影响
month%#3 = divide([amount],calculate([amount],allselected('date')))
//以allselected选中当前视觉对象之外的所有存在于'date'的外部上下文