Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
I have a table where I am trying to identify duplicate values based on a concatentation and then have the duplicate records shown to me. In the example below, we have the LANE ID (CONCATENTATION) and the count of that lane ID. However, once the Unique ID column is added, it displays LANE ID Count of 1 for each record even though there are clearly two LANE ID records (picture 2). I had this tool working until this morning when I refreshed my data source and then accidentally saved over my previous version. Does anyone know what I am missing that is causing it to not count properly?
(When summarized by LANE ID w/ count of LANE ID and filtered on values greater than 1. I identify all duplicates however, when adding the Unique Identifier as shown below, I receive a blank document. As I mentioned, this was working as of this morning and now I am unable to reproduce the same results after refreshing my data).
As seen below, after the filter of one is removed, the data is displayed but you can clearly see where there are duplicate lane ID's.
Any help is greatly appreciated.
Solved! Go to Solution.
The [RATE_GEO_GID] is different. You may add a measure as shown below.
Measure =
CALCULATE (
COUNT ( Table1[RATE_GEO_GID] ),
ALLEXCEPT ( Table1, Table1[LANE ID] )
)
The [RATE_GEO_GID] is different. You may add a measure as shown below.
Measure =
CALCULATE (
COUNT ( Table1[RATE_GEO_GID] ),
ALLEXCEPT ( Table1, Table1[LANE ID] )
)
Thank you so much! This worked perfectly!
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 53 | |
| 35 | |
| 31 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 75 | |
| 72 | |
| 39 | |
| 35 | |
| 23 |