Forum Discussion
royal20692
8 years agoFrequent Visitor
Capture caculated value from another table
Hi everyone, Currently, I am having this situation: I have two tables, one is the dataset (Data table) and another one is the list of KPI (KPI table) for my reports. In the first table, I created ...
v-cherch-msft
8 years agoMicrosoft Employee
Hi royal20692
You may try to create measures as below:
Actual = IF ( SELECTEDVALUE ( table[KPI] ) = "KPI 2", [Measure 2], [Measure 4] ) Budget = IF ( SELECTEDVALUE ( table[KPI] ) = "KPI 1", [Measure 1], [Measure 3] )
Regards,
Cherie
royal20692
8 years agoFrequent Visitor
Hi Cherie,
Thank for your support,
Actually, I want all the KPI displayed in a crosstable, so I don't know if I am going to use selectedvalue, will I have to add the KPI into my report as a filter or not.
and also, the problem is that when I drag the created measure to the report, it cannot recognize the measure from another table.
Please see the image below for an example