TABLE FUNCTIONS Flashcards

1
Q

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

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

In a one-to-many relationship, Related can access the _____side from the ______ side

A

one-side from the many-side

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

RELATABLE returns a what?

A

A table containing all the rows related to the current row.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

If expression is on the one-side and you need to access the many side, use function ____________

A

RELATABLE

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

SUMX(FILTER(‘Table’,’Table’[column] >1,),{Column 1]*[Column 2]))

Is this function best practice? Why or why not?

A

No it is not. You use calculate in this instance.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Does DAX calculate the inside function first or outside function for nested functions?

A

Inside function

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

The difference between scalar and table functions is that…..

A

that the former returns a single value, whereas the latter returns a table of one or more columns and one or more rows

How well did you know this?
1
Not at all
2
3
4
5
Perfectly