Forum Discussion
Anonymous
5 years agoNot applicable
Highlighting duplicated values in table visual in Power BI
Hi everyone, I'm having problem with using the conditional formatting to highlight the duplicated values in my table visual. My data looks like this To create the conditional formatting, ...
- 5 years agoRowcount : =IF (COUNTROWS (CALCULATETABLE ('Table',ALLSELECTED ( 'Table' ),VALUES ( 'Table'[Customer] ))) = 1,0,1)
Jihwan_Kim
Super User
5 years ago
Rowcount : =
IF (
COUNTROWS (
CALCULATETABLE (
'Table',
ALLSELECTED ( 'Table' ),
VALUES ( 'Table'[Customer] )
)
) = 1,
0,
1
)
AlessiaZak
2 years agoRegular Visitor
Hi, is there a way to filter out empty rows?