Forum Discussion
Wadi-Luca
5 years agoFrequent Visitor
DAX Function
Hello All, I have a question regarding DAX Functions: I have tried to search for a function that simply gets data from another table (without changing it) and places it in my DAX Table. However, I c...
Fowmy
5 years agoSuper User
Wadi-Luca
It depends on the DAX function and where you are calling your table. Based on the context, the column values will be materialized. When you access a table in a calculated column or in a measure, it produces different results, in addition, it can change if you use context modifiers like CALCULATE or CALCUALTETABLE.
To access a column from a table as it is : SELECTCOLUMNS function should help you
.
Wadi-Luca
5 years agoFrequent Visitor
Thank you! Appreciate the help!