0

This the OutPut of my Excel file :

enter image description here

I want to Change the date to be more comprehensible. Thanks for your Help

Baini.Marouane
  • 579
  • 2
  • 8
  • 18

1 Answers1

0

This is known issue, will be part of next release.

As a workaround you can use DateToString function in your measure.


DateToString function does not convert currently, will be done in the next release, measures to their values (see issues).

As a workaround you'll have to do this manually :

[Measures].[My Date].value  

or

[Measures].[My Date].value->asValue()

The second is needed if you're using a special aggregation method (e.g. min/max/open/close ) and will need Java to be active in icCube (doc)

ic3
  • 7,917
  • 14
  • 67
  • 115