Forum Discussion
Dax Calculation Across Two Tables
- Anonymous3 years ago
Hi Anonymous ,
If you are using a measure , you cannot directly reference a column in a table in a measure, you need to use a function to apply to a table column.
If you are using calculated columns, if there is a correspondence between the two tables (such as one-to-many), you can use the related() function to refer to a column in another table.
e.g:related(Alertsvulns[Created Date])
Best Regards,
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Anonymous ,
If you are using a measure , you cannot directly reference a column in a table in a measure, you need to use a function to apply to a table column.
If you are using calculated columns, if there is a correspondence between the two tables (such as one-to-many), you can use the related() function to refer to a column in another table.
e.g:related(Alertsvulns[Created Date])
Best Regards,
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.