TABLE FUNCTIONS Flashcards
Regardless of how many steps are necessary to travel from the original table to the related table, DAX follows the complete chain of relationships, and it returns the related column value. True/False
True
In a one-to-many relationship, Related can access the _____side from the ______ side
one-side from the many-side
RELATABLE returns a what?
A table containing all the rows related to the current row.
If expression is on the one-side and you need to access the many side, use function ____________
RELATABLE
SUMX(FILTER(‘Table’,’Table’[column] >1,),{Column 1]*[Column 2]))
Is this function best practice? Why or why not?
No it is not. You use calculate in this instance.
Does DAX calculate the inside function first or outside function for nested functions?
Inside function
The difference between scalar and table functions is that…..
that the former returns a single value, whereas the latter returns a table of one or more columns and one or more rows