Skip to main content
Announcements
July 15, NEW Customer Portal: Initial launch will improve how you submit Support Cases. IMPORTANT DETAILS
cancel
Showing results for 
Search instead for 
Did you mean: 
AdrianS1
Contributor III
Contributor III

Changing Label of Dimension in Chart

Hi Guys I Have a combo chart like this(dimenesion - Period1):

AdrianS1_0-1684246788100.png

Can I switch for example 'WTD' in Dimension for 'WTD - 58,5% ( its my 'measure')?

I Tried expression like this but its dont work 

=if(Period1='WTD','WTD'&'-'& 'measure',Period1) but it isnt working 😞 

Any Ideas?

 

Labels (2)
1 Solution

Accepted Solutions
brunobertels
Master
Master

Hi 

may be this 

Aggr(

if(Period1='WTD', Period1&'-'& 'measureForWtd' ,

if(Period1='MTD', Period1&'-'& 'measureForMTD' ,

if(Period1='YTD', Period1&'-'& 'measureForYTD' )))

,Period1

)

View solution in original post

1 Reply
brunobertels
Master
Master

Hi 

may be this 

Aggr(

if(Period1='WTD', Period1&'-'& 'measureForWtd' ,

if(Period1='MTD', Period1&'-'& 'measureForMTD' ,

if(Period1='YTD', Period1&'-'& 'measureForYTD' )))

,Period1

)