Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
sunitha_chellaiah
Partner - Creator
Partner - Creator

Calculated dimension in aggregated measure

Hi All,

I want to add calculated dimension in my aggregated measure.

Suppose i have calculated dimension as

=if(left(Segment,2)='KT','Apparel Knitting' ,

if(left(Segment,2)='WV','Apparel Weaving' ,

if(left(Segment,2)='HT','Home Textiles' ,

if(left(Segment,2)='TT','Technical Textile' ,

'Others'))))

now i want to use this dimension in

=sum(aggr(fieldname, 'calculated dimesion'))


Please help.

5 Replies
sunny_talwar

I would recommend to do this if statement in the script so that you can use the field name within the Aggr() function....

Anonymous
Not applicable

Hi Sunitha,

If the Calculation can be added in the script instead of UI, a simple aggregation step will help to solve the issue..

sunitha_chellaiah
Partner - Creator
Partner - Creator
Author

I want to do it in front end only.

Actually i want to use this calculated dimension in my ad hoc report. I have multiple dimensions in my report (around 20 including 2 calculated dimension). i want to use all the dimensions in Aggr().

Please help me with front end solution.

ogautier62
Specialist II
Specialist II

Hi,

maybe two remarks :

- why don't use left(segment,2) as dimension (more simple as expression)  and make a pick for label ?

- why do you need aggr in chart if you have this as dimension ?

regards

sunny_talwar

I don't think there is a solution...