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!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi all,
I am a newbie here and still trying to learn all DAX expressions.
I have a scenraio where my table contains all users' purchase records, for example:
| User ID | Purchase Amount |
| 001 | $50 |
| 001 | $150 |
| 002 | $500 |
| 002 | $30 |
I would like to calculate the total purchase amount per user for visuals.
Shall I adding a new measure or a new table? If a measure is okay, what would the DAX code be?
I tried
User Total Amount Purchased = CALCULATE(SUMX(sales,sales[purchaseamount]),sales[userid])
But it doesn't work?
Any advice would be appreciated!
Thanks
Jennifer
Hi,
Silly me!!!Thank you so much!
I have 2 calculated measures and a calculated column based on the 2 calculated measure.
Then I want to group the values in the calculated column but it keeps coming up with the 'circular dependency' error. I have looked at a few guide but can't figure it out.
Is it because I can't use calculated column with multiple calculated measures?
Thanks
Jennifer
hi @JLYT
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 50 | |
| 49 | |
| 35 | |
| 15 | |
| 14 |
| User | Count |
|---|---|
| 92 | |
| 75 | |
| 41 | |
| 26 | |
| 25 |