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.
Can I get a quick Dax here please ?
Bear in mind that in actual problem, ACV and Sales Amount are not calculated mesaures.
I am new to Dax
Solved! Go to Solution.
Hi @Anonymous ,
How about this:
Here the DAX for the measure :
CountMeasure = COUNTROWS ( FILTER ('Table', 'Table'[Sales Amount] < 190 && 'Table'[ACV] <= 0.9 ) )
Let me know if this helps 🙂
/Tom
https://www.tackytech.blog/
https://www.instagram.com/tackytechtom/
Did I answer your question❓➡️ Please, mark my post as a solution ✔️ |
Also happily accepting Kudos 🙂 |
Feel free to connect with me on LinkedIn! | |
#proudtobeasuperuser | |
Hi @Anonymous ,
How about this:
Here the DAX for the measure :
CountMeasure = COUNTROWS ( FILTER ('Table', 'Table'[Sales Amount] < 190 && 'Table'[ACV] <= 0.9 ) )
Let me know if this helps 🙂
/Tom
https://www.tackytech.blog/
https://www.instagram.com/tackytechtom/
Did I answer your question❓➡️ Please, mark my post as a solution ✔️ |
Also happily accepting Kudos 🙂 |
Feel free to connect with me on LinkedIn! | |
#proudtobeasuperuser | |