Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 
					
				
		
 antoniotiman
		
			antoniotiman
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		May be
=If(Count(TOTAL <Products> Colours) > 1,Yellow())
in Conditional Color.
Regards,
Antonio
 antoniotiman
		
			antoniotiman
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		May be
=If(Count(TOTAL <Products> Colours) > 1,Yellow())
in Conditional Color.
Regards,
Antonio
 
					
				
		
 devarasu07
		
			devarasu07
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hi,
try like this.
=if(Aggr(count ({<Colours=>}Products),Products)>1,Yellow(),White())
 
					
				
		
Sorry I was not clear, my desired outcome is below.
 sunny_talwar
		
			sunny_talwar
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		A little modification to Antonio's expression should work for you
=Aggr(If(Count(DISTINCT TOTAL <Products> Colours) > 1,Yellow()), Products, Colours)
Or this
Aggr(If(Count(DISTINCT Colours) > 1, Yellow()), Products)
 sunny_talwar
		
			sunny_talwar
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		A little modification to antoniotiman's expression should work for you
=Aggr(If(Count(DISTINCT TOTAL <Products> Colours) > 1,Yellow()), Products, Colours)
 
					
				
		
Thank you, it works 
 
					
				
		
Thanks
