Is there a way to create an MDX Calculated Measure in Excel 2013 based on today's date.
In a normal Excel formula, I can have a calculation like:
=(now()-Start_Date) / (End_Date - Start_Date)
I tried the following as an MDX Calculated Measure
([NOW]-[Plans].[Plan Start Date]) / ([Plans].[Plan End Date]-[Plans].[Plan Start Date])
and the result is #VALUE!
I am not even sure if this possible. Any help would be appreciated. Thanks.