Forum Discussion
Anonymous
4 years agoNot applicable
Lookup Value from Dimension table
Hi, how to create a DAX to have column "Version" and "Upgrade" in Fact table? Dimension Table: Product Attribute Name Attribute Value A Version V-1 A Upgrade U-2 B Version V-...
- 4 years ago
Hi Anonymous
Please try
Version = CALCULATE ( MAX ( TableA[Attribute Value] ),TableA[Attribute Name] = "Version" )Upgrade = CALCULATE ( MAX ( TableA[Attribute Value] ), TableA[Attribute Name] = "Upgrade" )
tamerj1
Community Champion
4 years agoHi Anonymous
Please try
Version = CALCULATE ( MAX ( TableA[Attribute Value] ),TableA[Attribute Name] = "Version" )Upgrade = CALCULATE ( MAX ( TableA[Attribute Value] ), TableA[Attribute Name] = "Upgrade" )