Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 
					
				
		
 cbaqir
		
			cbaqir
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		If you select FY16 and a PROG_PORT selection (first column in both tables), the charts are not reflecting only the rows in that selection. Not sure what is wrong but it didn't used to do this.

 sunny_talwar
		
			sunny_talwar
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Sounds good 
 
					
				
		
 cbaqir
		
			cbaqir
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		In my sample, I had disabled the Status expressions. In my actual file, with these enabled in the Program level graph, the filer on Program doesn't work. If I add the *avg(1) for all status fields, the filter works but the status fields are no longer displayed since their values are not numeric. Thoughts?
Scope Status:
=(if([CUR_PROG_SCOPE_HEALTH] = 'Green' , 'qmem://<bundled>/BuiltIn/check_g.png'
 
 ,if([CUR_PROG_SCOPE_HEALTH] = 'Yellow', 'qmem://<bundled>/BuiltIn/exclamation_y.png'
 
 ,if([CUR_PROG_SCOPE_HEALTH] = 'Red', 'qmem://<bundled>/BuiltIn/cross_r.png'
 
 , 'qmem://<bundled>/BuiltIn/minus.png'
 
 ))))*avg(1) 
 sunny_talwar
		
			sunny_talwar
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Use an if statement
If(Column(1) > 0,
=(if([CUR_PROG_SCOPE_HEALTH] = 'Green' , 'qmem://<bundled>/BuiltIn/check_g.png'
,if([CUR_PROG_SCOPE_HEALTH] = 'Yellow', 'qmem://<bundled>/BuiltIn/exclamation_y.png'
,if([CUR_PROG_SCOPE_HEALTH] = 'Red', 'qmem://<bundled>/BuiltIn/cross_r.png'
, 'qmem://<bundled>/BuiltIn/minus.png'
)))))
Where you check in another column if that column is greater than 0 or not.
 
					
				
		
 cbaqir
		
			cbaqir
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Thank you so much!
