Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 
					
				
		
How can I using this expression with right way:
( Qty * sum(Balance) ) / (sum (Qty)
I have table contain Item, Qty and Balance.
 
					
				
		
 jonathandienst
		
			jonathandienst
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Perhaps this (weighted average):
Sum(Qty * Balance) / Sum(Qty)
 sunny_talwar
		
			sunny_talwar
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		May be this:
Sum(Balance * Qty)/Sum(Qty)
 
					
				
		
Sorry, I explain it with wrong way
I need to make percentage for each Quantity >>> single quantity / total quantity
= Qty / sum(Qty)
= Qty / sum(Qty)
 
					
				
		
 arulsettu
		
			arulsettu
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		try this
sum(Qty)/sum(Total Qty)
 
					
				
		
still not clear, what exactly you want??
 
					
				
		
if it is for QTY only then try like:
=Sum(QTY)/Sum(<Total> QTY)
 Kushal_Chawda
		
			Kushal_Chawda
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		try below expression
num(sum(Qty)/ sum(Total <Item>Qty),'#.00%')
 
					
				
		
I put the QV Example to be clearly
