Introduction to DAX Flashcards

1
Q

What direction does related() move in?

A

From the many side to the one side

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

Does related() transverse all of the many to one relationships?

A

Yes

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

Relatedtable() returns…….

A

a table containing all the rows of a table on the many side that have a relationship with the current row on the table on which we define the column or we write the expression.

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

Calculated columns add ___ and ____ to your model

A

Size and Memory

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

What are calculated at the report level? What are calculated line by line in your model and NOT at the report level?

A

Measures, calculated columns

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

When are calculated columns usually used?

A

When you need to slice

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

Measures are computed in the context of the report? (True/False)

A

True

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

What do iterators do?

A

Iterate over the table and evaluate the expression for each row (at report level)

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

Is it better to use SUM() or SUMX()?

A

There is no difference, SUM(Table[Column]) translates to SUMX(Table,Table[Column]) on the backend.

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

What can you replace multiple || operators with?

A

You can replace multiple || operators with the IN function or the SWITCH function.

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