Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 
					
				
		
How do I change the following Expression of my TextBox Object so that the percentage has no decimals?
=Sum(Flag) &' (' & (sum(Flag)/sum({1}Flag))*100 &')' &'%'
 
					
				
		
 CELAMBARASAN
		
			CELAMBARASAN
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hi,
Check with this,
=Sum(Flag) &' (' & Num((sum(Flag)/sum({1}Flag))*100,0) &')' &'%'
Hope it helps
Celambarasan
 
					
				
		
 CELAMBARASAN
		
			CELAMBARASAN
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hi,
Check with this,
=Sum(Flag) &' (' & Num((sum(Flag)/sum({1}Flag))*100,0) &')' &'%'
Hope it helps
Celambarasan
 
					
				
		
Thank you, just what I needed.
