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! Get ahead of the game and start preparing now! Learn more
I am new to powerbi and I need help in converting the below excel formula to an expression
=IF(AND(COUNTIF(D:D,[@Number])>1,COUNTIFS(E:E,"*Response*",D:D,[@Number])>1),"Duplicate","No")
Solved! Go to Solution.
Hi @dineshpj ,
Create a measure as below:
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" )
Hi @dineshpj ,
Create a measure as below:
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" )
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 38 | |
| 36 | |
| 33 | |
| 32 | |
| 29 |
| User | Count |
|---|---|
| 129 | |
| 88 | |
| 79 | |
| 68 | |
| 63 |