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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
Good morning, I hope you can help me.
I want to identify the value of duplicator products by Price $ / kWh.
From the measure I did, it identifies all of them as duplicates but it does not show me the non-duplicates, if someone could help me
Hi @Anonymous ,
Please try this:
Count_duplicates =
Var a= [Price $ / kWh]
RETURN
CALCULATE(
COUNTROWS('TableName'),
all('TableName'),
'TableName'[Price $ / kWh] = a
)
whereever the count_duplicates is greater than 1 it means there are duplicate values.
@Anonymous -> please hit the thumbs up & mark it as a solution if it helps you. Thanks.