My primary question is:
How should I enable to make column "name" from table fact_B to be displayed inside of table Fact_A by with support of DAX code only?
Additional info:
- In this context, I cant use SQL code
- The relationship is one to may between fact and dim table in the tabular datamodel. No direct relationship between fact A and fact B.
- I'm using SQL server 2012 with SSAS tabular mode.
table fact_A
-----------------------------
PK_fact_A dim_B Qty name
-----------------------------
1 5 4 asdf
2 6 7 bbb
3 7 6 aaaa
table dim_B
---------------------
PK_dim_B cost name
---------------------
5 5 uuu
6 7 uuu_u
7 9 uuu__u
table fact_B
-----------------------------
PK_fact_B dim_B Qty name
-----------------------------
9 5 5 nn
8 6 7 mm
7 6 1 oo
How should I enable to make column "name" from table fact_B to be displayed inside of table Fact_A by with support of DAX code only?
Additional info:
- In this context, I cant use SQL code
- The relationship is one to may between fact and dim table in the tabular datamodel. No direct relationship between fact A and fact B.
- I'm using SQL server 2012 with SSAS tabular mode.
table fact_A
-----------------------------
PK_fact_A dim_B Qty name
-----------------------------
1 5 4 asdf
2 6 7 bbb
3 7 6 aaaa
table dim_B
---------------------
PK_dim_B cost name
---------------------
5 5 uuu
6 7 uuu_u
7 9 uuu__u
table fact_B
-----------------------------
PK_fact_B dim_B Qty name
-----------------------------
9 5 5 nn
8 6 7 mm
7 6 1 oo