Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 
					
				
		
Hiii To All,
I m creating one variable:
LET $LastPrice=Tax+[Unit Price];
M adding Tax and Unit Price but m getting string as it is in my straight table.its not evaluating the expression.
Thanx & Regards,
Qliker.
Abhishek,
Simple use your Dimension and create one variable like
LET Sample = 'Gross + Salary';
Then create chart with that dim and use this expression $(Sample)
-- Anil
 MK_QSL
		
			MK_QSL
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Use
LET LastPrice=Tax+[Unit Price];
Now at front end use $(LastPrice)
 
					
				
		
 oknotsen
		
			oknotsen
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		I strongly suggest you not to use the $ sign as part of your variable names. Instead, just start them with v or var.
Anyway,
To "execute" the text, use the dollar function (also known as the dollar-sign-extention or something like that).
Example:
Assumine your variable is called vLastPrice:
$(vLastPrice)
 Chanty4u
		
			Chanty4u
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		missng ' '
LET $LastPrice='Tax+[Unit Price]';
 
					
				
		
 oknotsen
		
			oknotsen
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		The quotes should not be needed.
 
					
				
		
Problem Solved Guyzz..
Thnx a lot.
But nw i want sum of the variable value m doing Sum($(eLastPrice)).
M getting Double value.
Ex.
My lastPrice= 7.47 but m Getting LastPrice= 14.94
 
					
				
		
 mangalsk
		
			mangalsk
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Please find attached.
just need to $($LastPrice), it worked
 
					
				
		
M not able to open your attachment and i have used $($LastPrice) but m not getting the result.
 MK_QSL
		
			MK_QSL
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Use this expression
=$(=$LastPrice)
 
					
				
		
I Have created the variable eLastPrice=Tax+[Unit Price];
now i want the sum of my final value
Sum($(eLastParice)) ????
