Values displaying in my report are lengthy, so i want to reduce its length for simplicity. My reports are having big digits like 7000000000 now i want it display like 700M (M = million).
I am trying to find it on report graph area Right Click -->Edit Format --> Y axis --> Values --> Number Format.
But there is no such format i found in BO like in Cognos.
I think in current days Cognos cannot match BO’s level of reporting.
Anyways thats not the point of discussion. To get the desired result you can create a variable.
var = [number]/1000000 concatenation_operator “M”
or you can use the scientific value #.###E# where # can be any number.
for example: 120000 =1.2E5
Also As far as i rem’ber this functionality is enhanced in XI 3.0 and above… 'coz Voyager which is a part of XI 3.0 and above displays data in Thousands as K, Millions as M and so on…
I hope this will help you in some or the other way.