How should you write the calculation?

You are developing a SQL Server Analysis Services (SSAS) tabular project.

A column named City must be added to the table named Customer. The column will be used
in the definition of a hierarchy. The City column exists in the Geography table that is related
to the Customer table.
You need to add the City column to the Customer table.
How should you write the calculation?

You are developing a SQL Server Analysis Services (SSAS) tabular project.

A column named City must be added to the table named Customer. The column will be used
in the definition of a hierarchy. The City column exists in the Geography table that is related
to the Customer table.
You need to add the City column to the Customer table.
How should you write the calculation?

A.
=RELATEDTABLE(Geography)

B.
=RELATED(Geography[City])

C.
=Geography[City]

D.
City:=Geography[City]

E.
City:=RELATED(Geography[City])

F.
City :=RELATEDTABLE (Geography)



Leave a Reply 10

Your email address will not be published. Required fields are marked *


Sherry

Sherry

B is correct

JoseG

JoseG

I agree with Ralph

Ruslan Sakhipov

Ruslan Sakhipov

Measures require name before “:=”, but columns are defined without it in the formula textbox.
Just google “calclulated column” and you will see the difference.

EG

EG

Agreed with Ruslan. So answer is B

Henk Schenkworst

Henk Schenkworst

E, I agree with Ralph