Question

I have Business Intelligence Projects project in VS. I create cube, and when I'm browsing data and generate raports I have quarters in format 1,2,3,4. I want to show quarters in format Q1, Q2, ...

When I'm changing quarter format I still get quaters in format 1,2 ...

example:

enter image description here

How to change it?

Was it helpful?

Solution

I found solution.

To do this is needed calculated column in table where we need this with expresion:

case
 when CalendarQuarter = ‘1’ then ‘Q1’
 when CalendarQuarter = ‘2’ then ‘Q2’
 when CalendarQuarter = ‘3’ then ‘Q3’
 else ‘Q4’
end
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top