Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 
					
				
		
 vijayit43
		
			vijayit43
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hi Expert,
we want Current selection value in text object how to achieve this please suggest.
 
					
				
		
 jagan
		
			jagan
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hi,
Try Distinct keyword it eliminates the duplicates
=Concat(DISTINCT Period,',')
OR you can also use GetFieldSelections(Period)
Regards,
Jagan.
 
					
				
		
Hi,
Try this, if you want Nothing in the text box when nothing is selected from that field..
= if(GetSelectedCount(Field Name)=0,'',Concat(DISTINCT Field Name,','))
 anbu1984
		
			anbu1984
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Concat() will display all Periods when nothing is selected
 
					
				
		
PFA
