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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
We need to calculate the number of orders.
Create
a calculated measure that uses the COUNTA(Order_ID) DAX formula?
OR
a calculated measure that uses the SUM (Order_ID) DAX formula?
OR
a calculated column that uses the SUM (Order_ID) DAX formula?
OR
a calculated column that uses the COUNTA (Order_ID) DAX formula?
which one is right?
Solved! Go to Solution.
Hi buddy,
Try use a measure with:
DISTINCTCOUNT([NoORDER])
this would give you the number of distinct Nº of orders.
Any questions, ask 😉
Hi,
The first one is correct.
Hi buddy,
Try use a measure with:
DISTINCTCOUNT([NoORDER])
this would give you the number of distinct Nº of orders.
Any questions, ask 😉
@Anonymous wrote:Hi buddy,
Try use a measure with:
DISTINCTCOUNT([NoORDER])
this would give you the number of distinct Nº of orders.
Any questions, ask 😉
Thanks for answer. Can you explain which is correct from below 1 and 2?
1 a calculated measure that uses the COUNTA(Order_ID) DAX formula?
OR
2 a calculated measure that uses the SUM (Order_ID) DAX formula?
OR
a calculated column that uses the SUM (Order_ID) DAX formula?
OR
a calculated column that uses the COUNTA (Order_ID) DAX formula?
Hi,
The first one is correct.
A simple