Forum Discussion
Measure with columns from different tables
Hello Anonymous ,
Would you be able to share a sample of the data model with us? It would help to see the relationships and test.
Hi jdbuchanan71,
Unfortunately I can't share the actual data since it's query from external data source and contains millions of lines with 30 columns. I did create a small sample file amd simplied the equation and have no issue. But when I applied the same equation to the actual data, I ran into this exceed max allowed size of 1000000 rows. However, if I hardcode the cost instead of cost[john_aud], I entered 45.20 for example, there is no issue.
- jdbuchanan717 years ago
Super User
What if, rather than using a swith in the measure, you use dax to generate a two coumn table with the name and cost. You can then join this to your sales table on name and your extended cost is then just.
Ext Cost = SUMX(sales,sales[Quantity] * RELATED(cost[Cost]))
It will also likely perform better.