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.
SELECT customer_id, SUM(amount) AS total_sales
FROM orders
GROUP BY customer_id;
How can I convert it to a DAX function?
Is there any AI tool that converts SQL queries to DAX functions? (Except ChatGPT)
Solved! Go to Solution.
Hi @jainesh12
If you are creting a measure then simply
total_sales = SUM ( Orders[Amount] )
If you want to create a calculated table
OrdersByCustomer =
SUMMARIZE ( Orders, Orders[Customer_id], "total_sales", SUM ( Orders[Amount] ) )
Hi @jainesh12
If you are creting a measure then simply
total_sales = SUM ( Orders[Amount] )
If you want to create a calculated table
OrdersByCustomer =
SUMMARIZE ( Orders, Orders[Customer_id], "total_sales", SUM ( Orders[Amount] ) )
@tamerj1 Thank you for the suggestion.
This was just an example, do you know is their any requirement to convert SQL queries to DAX functions?
If yes, please suggest a few scenarios.
User | Count |
---|---|
15 | |
9 | |
8 | |
6 | |
5 |
User | Count |
---|---|
31 | |
19 | |
15 | |
7 | |
6 |