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
How to write below calculations from tableau in DAX:-
1. COUNT(IF[is DQ] =1 AND [Resolved] =0 THEN 1 END)
2. [Placements with Open Errors] / MAX({FIXED [User]:COUNTD([Pcode])})
3. IIF([Show Ignored Errors]="True",[Ignored Errors],NULL)
Amy suggestions ?
@UditJ I hope this help's you!
1. COUNT(IF[is DQ] =1 AND [Resolved] =0 THEN 1 END)
CNT =
VAR X = IF(AND([is DQ] =1,[Resolved] =0),1)
RETURN
COUNTX('Table Name',X)
#############################################################
2. [Placements with Open Errors] / MAX({FIXED [User]:COUNTD([Pcode])})
DvD = DIVIDE([Placements with Open Errors] ,MAX({FIXED [User]:COUNTD([Pcode])}))
If this not work Please explain MAX({FIXED [User]:COUNTD([Pcode])}) formula.
#############################################################
3. IIF([Show Ignored Errors]="True",[Ignored Errors],NULL)
IIFS = IF([Show Ignored Errors]="True",[Ignored Errors],NULL)
@UditJ THANK YOU!!
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 58 | |
| 45 | |
| 42 | |
| 20 | |
| 18 |