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.
Dear collegues;
Hope my message find you well,
Please could you help me with a DAX mesure
As per the printscreen below :
Thank you for your support
Fd.
Solved! Go to Solution.
Hi @dofrancis3 ,
The table data is shown below:
Please follow these steps:
1. Use the following DAX expression to create a measure named ‘FailOrPass ’
FailOrPass = SUMX(FILTER('Tabelle1',
'Tabelle1'[Status] = "Fail" || 'Tabelle1'[Status] = "Pass"),
'Tabelle1'[Female])
2. Use the following DAX expression to create a measure named ‘PassOnly ’
PassOnly = SUMX(FILTER('Tabelle1',
'Tabelle1'[Status] = "Pass"),
'Tabelle1'[Female])
3. Final output
Best Regards,
Wenbin Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @dofrancis3 ,
The table data is shown below:
Please follow these steps:
1. Use the following DAX expression to create a measure named ‘FailOrPass ’
FailOrPass = SUMX(FILTER('Tabelle1',
'Tabelle1'[Status] = "Fail" || 'Tabelle1'[Status] = "Pass"),
'Tabelle1'[Female])
2. Use the following DAX expression to create a measure named ‘PassOnly ’
PassOnly = SUMX(FILTER('Tabelle1',
'Tabelle1'[Status] = "Pass"),
'Tabelle1'[Female])
3. Final output
Best Regards,
Wenbin Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
User | Count |
---|---|
10 | |
8 | |
5 | |
5 | |
4 |