This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
I am importing a table TABLEA from AAS direct query connection.
Lets say TABLEA has two columns...
I want to add a new column called "Location Sales Total" which sums the Sales per Location. I want this as a new column to TABLEA, not a new table.
I have this DAX...
Location Sales Total =
var location = [Location]
var sum_of_sales = CALCULATE(SUM(TABLEA[Sales]), FILTER(TABLEA, TABLEA[Location] = location))
return sum_of_sales
I received this error:
A circular dependency was detected: TABLEA[Location Sales Total]
Can someone help me and explain why this is happening.
(it works when I import data... maybe has something to do with direct query)
@spencerhoyle10 , I doubt you can create a column like this in direct query
Try a measure like
CALCULATE(SUM(TABLEA[Sales]), FILTER(allselected(TABLEA), TABLEA[Location] = max( TABLEA[Location]) ))
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 36 | |
| 28 | |
| 28 | |
| 21 | |
| 18 |
| User | Count |
|---|---|
| 68 | |
| 39 | |
| 33 | |
| 24 | |
| 23 |