Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 Louveduval
		
			Louveduval
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hello, 
I've this table with [nombre d'heure]=Sum([Temps Total]) and [lapin] =  RangeSum(Above(sum([Temps Total]),0,RowNo()))
But now, I would like to have the pourcentage of Nombre d'heure by the max(lapin) by activité
can you help me ?
 
					
				
		
 marcus_sommer
		
			marcus_sommer
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		You could get the needed partial total by applying a total-statement within the aggregation which may look like:
Sum([Temps Total]) / Sum(total < date, collabateur, activite> [Temps Total])
 
					
				
		
 marcus_sommer
		
			marcus_sommer
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		You could get the needed partial total by applying a total-statement within the aggregation which may look like:
Sum([Temps Total]) / Sum(total < date, collabateur, activite> [Temps Total])
 Louveduval
		
			Louveduval
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		it's perfect thank you
