Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.
Soy nuevo en powerbi y necesito ayuda para convertir la siguiente fórmula de Excel a una expresión
•IF(AND(COUNTIF(D:D,[@Number])>1,COUNTIFS(E:E,"*Response*",D:D,[@Number])>1),"Duplicate","No")
Hola @dineshpj ,
Cree una medida como se muestra a continuación:
measure =
VAR _count1 =
CALCULATE (
COUNT ( 'Table'[Column D] ),
FILTER ( 'Table', 'Table'[Column D] = [@Number] )
)
VAR _count2 =
CALCULATE (
COUNT ( 'Table'[Column E] ),
FILTER (
'Table',
'Table'[Column E] = "*Response*"
&& 'Table'[Column D] = [@Number]
)
)
RETURN
IF ( _count1 > 1 && _count2 > 1, "Duplicate", "No" )
Check out the May 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.