Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 
					
				
		
Hi All,
I have a variable vCurrentWave=getfieldselections(CurrentWave)
In expression i am trying to get the count.
=Count({$<WAVE={'$(vCurrentWave)'}>}MYSTERY_SHOPPER)
Also i tried
=Count({$<WAVE={$(vCurrentWave)}>}MYSTERY_SHOPPER)
=Count({$<WAVE={'=$(=vCurrentWave)'}>}MYSTERY_SHOPPER)
if i pass the value directly as below i am getting the count
=Count({$<WAVE={'WAVE2'}>}MYSTERY_SHOPPER)
i tried to display the variable value in text object it is displaying the value as WAVE2
Using the variable i am not getting the result.
Thanks.
 MK_QSL
		
			MK_QSL
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Provide sample plz
 
					
				
		
Try this
=Count({$<WAVE={$(=vCurrentWave)}>}MYSTERY_SHOPPER) // not checked the syntax error yet.. but give it a quick try please
 ali_hijazi
		
			ali_hijazi
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Count({$<WAVE={vCurrentWave}>}MYSTERY_SHOPPER)
 MayilVahanan
		
			MayilVahanan
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		
Hi
Try like this
Variable: vCurrentWave
Value: getfieldselections(CurrentWave) // remove = assign
In text box, try like this $(vCurrentWave)
=Count({$<WAVE={$(vCurrentWave)}>}MYSTERY_SHOPPER)
or
=Count({$<WAVE={'$(vCurrentWave)'}>}MYSTERY_SHOPPER)
 
					
				
		
Thank you for your reply. It doesn't work
 
					
				
		
Thank you for your reply.
Syntax issue
 MK_QSL
		
			MK_QSL
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Provide sample plz
 
					
				
		
Hi Manish,
Your answer worked for me.
=Count({$<WAVE={$(=$(vCurrentWave))}>}MYSTERY_SHOPPER)
Thanks a lot. (By mistake i delete one of my reply)
