Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

[DAX] Getting particular date from one query to another

Hello everyone, I'm facing an issue while trying to "export" one date from one query into another using DAX. My structure of data looks like that:   Both tables are connected with "one-to...
  • v-lili6-msft's avatar
    v-lili6-msft
    7 years ago

    hi, Anonymous 

    You could use this simple formula

    Column = CALCULATE(MAX(Tasks[AStageCreatedDate]),ISBLANK(Tasks[AStageCreatedDate])=FALSE())

    Result:

     

     

    Best Regards,

    Lin