Forum Discussion
sjpathak
7 years agoFrequent Visitor
KPI across multiple tables
Hi, I have a 'KPITargets' table as below ID Target ----------------------- Punctuality 99.0% Availability 98.5% There are other tables, from where the a...
- 7 years ago
Hi sjpathak
You may new a column for KPITargets table with below dax:
Column = IF ( KPITargets[ID] = "Punctuality", [Measure1.DeliveryPunctuality], [Measure2.StockAvailability] )
Regards,
Cherie
v-cherch-msft
7 years agoMicrosoft Employee
Hi sjpathak
You may new a column for KPITargets table with below dax:
Column = IF ( KPITargets[ID] = "Punctuality", [Measure1.DeliveryPunctuality], [Measure2.StockAvailability] )
Regards,
Cherie