Forum Discussion
AndrewTobin
2 years agoFrequent Visitor
SSAS Tabular Shared Expressions vs PowerBI Power Query
Hey folks, just a confirmation if I can. We are using SSAS Tabular, and we want to create duplicates of tables, except if we do so using an Import or DAX then it contains a duplicate of the data ...
jennratten
1 year agoSuper User
Hello -
When an expression references another expression, the referenced expression is evaluated first, and its result is then used in the evaluation of the referencing expression. This means that both expressions are evaluated, but not necessarily back to the source data. Instead, the evaluation depends on the context and the specific calculations involved.
For example, if you have Expression A that calculates a value based on some source data, and Expression B that references Expression A, the following happens:
- Expression A is evaluated based on the source data.
- The result of Expression A is then used in the evaluation of Expression B.
This process ensures that the calculations are performed correctly and efficiently, without redundant evaluations back to the source data.