Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 
					
				
		
I have an expression for sum(sales) how to display in the caption such that it shows ''Total sales=sum(sales). in place of sum(sales) i should see the value.
eg: Total Sales = 2012
 Gysbert_Wassena
		
			Gysbert_WassenaTry: = 'Total Sales = ' & sum(sales)
 Gysbert_Wassena
		
			Gysbert_WassenaTry: = 'Total Sales = ' & sum(sales)
 
					
				
		
 rwunderlich
		
			rwunderlich
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Do you mean the display in the hover pop-up? What kind of object (chart) do you hve the expression in?
-Rob
 
					
				
		
Hi Gysbert,
Thanks for that. Now it is working
 
					
				
		
Hi Rob ,
I am using Pie chart .
We have different type s of representation for each type of chart? in my case as Gysbert said = 'Total Sales = ' & sum(sales) is working . Can you please tell me , what if i use different charts
 MayilVahanan
		
			MayilVahanan
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hi
For any chart, u can use like this
= 'Total Sales = ' & sum(Sales)
& is used for concat the values
hope it helps
 
					
				
		
 rwunderlich
		
			rwunderlich
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		It's the same caption expression for any chart type. I was just trying to clarify if the question was about the caption or hover pop-up.
Don't forget to mark Gysbert's answer correct.
-Rob
 
					
				
		
Hi Mayil,
Thanks for the information.
 
					
				
		
Hi Rob ,
Thanks for the information
