Forum Discussion
DanDan
5 years agoRegular Visitor
Removing repeated values in matrix
Apologies if this is a bit basic and my Subject title is vague - I'm a strong beginner at best! I've two matrices and a filter with 'Budget' selected. The difference between the matrices is that ...
- Anonymous5 years ago
Hi DanDan ,
You can update the measure [Budget Cost ] as below and create another new measure to replace it on the matrix, please find the details in the attachment.
Budget Cost = IF ( ( ISINSCOPE ( 'Mapping'[Line Item] ) && NOT ( ISINSCOPE ( 'ActualsCosts'[Item Description] ) ) ) || ( NOT ( ISINSCOPE ( 'ActualsCosts'[Item Description] ) ) && ISINSCOPE ( 'Supplier'[Supplier Name] ) ), SUM ( BudgetCosts[Value] ), BLANK () )Measure = SUMX(VALUES('Mapping'[Line Item]),[Budget Cost])Best Regards
Anonymous
5 years agoNot applicable
Hi DanDan ,
You can update the measure [Budget Cost ] as below and create another new measure to replace it on the matrix, please find the details in the attachment.
Budget Cost =
IF (
(
ISINSCOPE ( 'Mapping'[Line Item] )
&& NOT ( ISINSCOPE ( 'ActualsCosts'[Item Description] ) )
)
|| (
NOT ( ISINSCOPE ( 'ActualsCosts'[Item Description] ) )
&& ISINSCOPE ( 'Supplier'[Supplier Name] )
),
SUM ( BudgetCosts[Value] ),
BLANK ()
)Measure = SUMX(VALUES('Mapping'[Line Item]),[Budget Cost])
Best Regards
FarrukhData
1 year agoFrequent Visitor
Hi,
what if we can't sum because we have text repeating?
orange is rows and black is values. I don't want black to repeat.