Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi,
I have the following table:
Name | Serial numer |
A | 2DC25F |
B | F3DGG |
C | |
D | |
E | 5GERG |
F | 6XDBD |
G | 89DBBE |
H | 6XDBD |
Could you please help to count Names which have duplicate and empty Serial Number
The result would be 4 here. I would like to display the result in a card and can export these names.
Thank you in advance.
Solved! Go to Solution.
You can create a measure like
Duplicates and blanks =
VAR SummaryTable =
ADDCOLUMNS(
SUMMARIZE( 'Table', 'Table'[Serial numer] ),
"@num rows", CALCULATE( COUNTROWS( 'Table' ) )
)
RETURN
SUMX(
FILTER(
SummaryTable,
[@num rows] > 1 || ISBLANK( 'Table'[Serial numer] )
),
[@num rows]
)
Hi @vnqt
You can use this measure to count
Count Measure = SUMX(FILTER(SUMMARIZE('Table','Table'[Serial numer],"Count",COUNT('Table'[Name])),[Count]>1),[Count])
If you want to display the names in the report, you can use another measure as a filter. Add Name column to a table visual in the report, then add below measure to filter pane as a visual-level filter on this table visual. Set it to show items when value is 1.
Filter Flag =
var vSNs = SELECTCOLUMNS(FILTER(SUMMARIZE(ALL('Table'),'Table'[Serial numer],"Count",COUNT('Table'[Name])),[Count]>1),"SN",[Serial numer])
return
IF(SELECTEDVALUE('Table'[Serial numer]) IN vSNs, 1, 0)
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.
You can create a measure like
Duplicates and blanks =
VAR SummaryTable =
ADDCOLUMNS(
SUMMARIZE( 'Table', 'Table'[Serial numer] ),
"@num rows", CALCULATE( COUNTROWS( 'Table' ) )
)
RETURN
SUMX(
FILTER(
SummaryTable,
[@num rows] > 1 || ISBLANK( 'Table'[Serial numer] )
),
[@num rows]
)
Thank you for your advice.
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
70 | |
68 | |
43 | |
34 | |
26 |
User | Count |
---|---|
86 | |
49 | |
45 | |
38 | |
37 |