Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Field Value in Chart Title

Hi,

I want to display name of the Product that I'm selecting in a list box on the title of a chart.

My chart has a dimension Qtr Year ( calculated by Qtr&' '&Year)  and a measure Revenue. I select a product and a year and the chart is supposed to show Revenue for the selected Product for all the quarters of the year. I have done that.

Now the Chart Title. Presently it is a static string 'Revenue Summary by Product' I want it to say 'Product X Revenue Summary' where Product X is dynamic and changes based on the selection made in the Product Name list box.

Is it possible to do so?

1 Solution

Accepted Solutions
IAMDV
Luminary Alumni
Luminary Alumni

Amitesh - You can use the below expression.

='Product  : ' & GetFieldSelections(Product) & 'Revenue Summary'

I hope this helps!

Cheers - DV

View solution in original post

4 Replies
Anonymous
Not applicable
Author

Put your application in order to take a look.

Not applicable
Author

You can use the GetFieldSelections function.

IAMDV
Luminary Alumni
Luminary Alumni

Amitesh - You can use the below expression.

='Product  : ' & GetFieldSelections(Product) & 'Revenue Summary'

I hope this helps!

Cheers - DV

Not applicable
Author

Hi DV and ehilsinger,

Thanks to both of you for helping me out. Sorry I could not mark both your answers as correct.

I'm a new to this so DV's complete syntax helped more.

Thanks again for the prompt replies.

Amitesh