Hi,
I have a field generated from MDX using SSAS which I want to display in thousand unit - k.
For example,
1000 -> 1k
500000 > 500k
I have a suggestion to use field.value / 1000 & 'K' in the expression but because it's a field generated from MDX it doesn't allow to edit the expression. See the screenshot below.
One option I can think of is adding the calculated fields in the dataset properties using the above expression but there are about 50 measures generated from MDX and i want to avoid re-creating calculated fields for those 50 measures.
The second option I can think of is applying the calculation in the MDX but I also want to avoid this as other part of my report displays the pre-formatted value from the same MDX results.
Any other ideas you can help me with ?