I'm trying to create a calculated measure that returns the converted value of an amount to Euro : i have the measure [Measures].[Montant] in my fact table but i need to use a dimension attribute [Taux Change].[Taux Euro] that represents the conversion rate.
My calculated measure should basically be something like :
[converted_amount] = [Measures].[Montant]*[Taux Change].[Taux Euro]
My problem is that this new calculated measure returns Blank.
Could you please help me find the appropriate MDX code to use in my case.
Thanks.