Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
my requirement is in dimension field i want the required output
Use Calculated dimensions.
Vikas
calculated dimesions
how to use it pls explain?
some example???
if you could explain your scenario or post some sample data we can explain you better
for example you have age field like this
1,2,3,4,5,6,7,8,9,10
if you want to show in a chart like this
0-2, 2-4,4-6,6-8,8-10
then you can add calculated dimension in dimension tab
and write like this
class(age,2)
thanks bro, but i want to develop this scenario at backend by using script.
With the Arul Settu Example
you can add that in the script
lik
Load
...
class(age,2) as ageRange,
from table
you can do at backend also
load
CLASS(AGE,2) AS age
from
.....