Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

Use DAX expressions to set parameters?

Can you use DAX expressions to set parameters? Basically, I have a very large multi year detailed data set and a summary query. What I would like to do is use the summary query to present information...
  • TomMartens's avatar
    TomMartens
    6 years ago

    Hey,

     

    PowerQuery queries are creating the "1st level" of the data model, the "2nd" level is created by something than can be considered as model processing, this "materializes" all the calculated column that have been added using DAX.

     

    Finally a user interacts with the model (2nd level) by selecting values from a slicer, etc ...

     

    These interactions can not be passed down to the levels that have been creating the data model. This explains why a measure can not be used inside a calculated column. From a technical point of view this is possibel, but the value of the calculated column will not change if the the measure will change, e.g. by a user interaction with the data model.

     

    Regards,

    Tom