Forum Discussion
tuncay
Helper III
3 years agoTotal is not shown on Matrix
Dear Community,
I have a measure added to a matrix. When the slicer selection is only one (e. g. 2023) it does calculate a total in the matrix. But whenever I select two years it does not calculate the total anymore..
Berechnet ACT = SUMX(FILTER('RD Costs', 'RD Costs'[Fiscal Year] = 'SP - Fiscal Year - Master data'[Selected_Fiscal_Year]),[ACT YTD])
Thank you very much!
4 Replies
- tuncay
Helper III
any ideas?
- AnonymousNot applicable
HI tuncay,
I'd like to suggest you replace the '=' operator(it not suitable to compare with multiple of selected values) to 'IN' operator and use values to extract and get distinct selection list:
Berechnet ACT = SUMX ( FILTER ( 'RD Costs', 'RD Costs'[Fiscal Year] IN VALUES ( 'SP - Fiscal Year - Master data'[Selected_Fiscal_Year] ) ), [ACT YTD] )Regards,
Xiaoxin Sheng
- tuncay
Helper III