Forum Discussion
spencerhoyle10
3 years agoFrequent Visitor
Creating Column... Circular Dependecy
I am importing a table TABLEA from AAS direct query connection. Lets say TABLEA has two columns... Location Sales I want to add a new column called "Location Sales Total" which sums the S...
amitchandak
3 years agoSuper User
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]) ))