Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 stjernvd
		
			stjernvd
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hi,
I want to hide my expression in my chart only if nothing is selected in any filters.
So in the conditional show box for expression I tried to put this:
=if(GetCurrentSelections() <> 0)
but it doesn't work.
Any ideas?
 sunny_talwar
		
			sunny_talwar
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Try this instead:
If you want to display when something is selected, try this:
Len(Trim(GetCurrentSelections)) > 0
For the expression to display when nothing is selected, try this:
Len(Trim(GetCurrentSelections)) = 0
 sunny_talwar
		
			sunny_talwar
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Try this instead:
If you want to display when something is selected, try this:
Len(Trim(GetCurrentSelections)) > 0
For the expression to display when nothing is selected, try this:
Len(Trim(GetCurrentSelections)) = 0
