Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 
					
				
		
Hey guys,
I have three a list box (say 'L') and two charts.
List box and Chart 1 are always visible.
But I want the Chart 2 to be visible only on selection of a value in the listbox. It can be any value. If I select a value from that particular field (listbox), the chart 2 should show up. Otherwise, it has to stay hidden.
I tried conditional statement. But it's not working. If anyone could help me with the expression, it would be really great.
thanks in advance
Srujan
 
					
				
		
 charlotte_qvw
		
			charlotte_qvw
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		 
					
				
		
 johnw
		
			johnw
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Your field name is "L"? Layout tab, Show, Conditional, then:
getselectedcount("L")
 
					
				
		
 charlotte_qvw
		
			charlotte_qvw
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		I tried this
GetSelectedCount(CategoryName)>=1
Cheers
 
					
				
		
 charlotte_qvw
		
			charlotte_qvw
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Sorry, should be
GetSelectedCount(L)>=1
 
					
				
		
 johnw
		
			johnw
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Anything non-zero evaluates to true, and 0 evaluates to false, so getselectedcount("L") is sufficient without the >=1. The condition doesn't hurt, of course, if it makes more sense to you that way.
 
					
				
		
That works, thanks so much..!
