Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!
Good morning to everyone. I hope you are all good!
I need to know if a line is repeated in a table looking for a unique ID (column "ID único"), since we know there are some repeated files. But I need to know which lines are repested. the Table is:
If the line is repeated, I need in another column that say "YES", and no repeated "NO". Does anyone know how to do this? Thanks a lot, best regards,
Chema Ortega
Solved! Go to Solution.
Create a calculated column
Is Repeated =
IF(
COUNTROWS(
FILTER(
YourTableName,
YourTableName[ID único] = EARLIER(YourTableName[ID único])
)
) > 1,
"YES",
"NO"
)
If this helped, a Kudos 👍 or Solution mark would be great!
Cheers,
Kedar Pande
www.linkedin.com/in/kedar-pande
Hi Pedar,
Thanks soooo much!!! That made the solution!!!! GREAT!!!!
Best regards,
Chema ortega
Create a calculated column
Is Repeated =
IF(
COUNTROWS(
FILTER(
YourTableName,
YourTableName[ID único] = EARLIER(YourTableName[ID único])
)
) > 1,
"YES",
"NO"
)
If this helped, a Kudos 👍 or Solution mark would be great!
Cheers,
Kedar Pande
www.linkedin.com/in/kedar-pande
| User | Count |
|---|---|
| 53 | |
| 40 | |
| 35 | |
| 24 | |
| 22 |
| User | Count |
|---|---|
| 134 | |
| 107 | |
| 57 | |
| 43 | |
| 38 |