Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 mcoetzee
		
			mcoetzee
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Please see formula that does not want to work, please help?
if(DiscountValue>0, sum((DiscountValue / 1.15)/PaymentFreq),0) + (MasterTotalExc/PaymentFreq) AS FinalNewMonthlyFee
 
					
				
		
 arpitkharkia
		
			arpitkharkia
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		May be try this
if(DiscountValue>0, sum((DiscountValue / (1.15*PaymentFreq),0) + (MasterTotalExc/PaymentFreq) AS FinalNewMonthlyFee
 
					
				
		
 m_woolf
		
			m_woolf
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Try:
if(DiscountValue>0, (DiscountValue / 1.15)/PaymentFreq),0) + (MasterTotalExc/PaymentFreq) AS FinalNewMonthlyFee
 mcoetzee
		
			mcoetzee
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		 
					
				
		
 arpitkharkia
		
			arpitkharkia
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		May be try this
if(DiscountValue>0, sum((DiscountValue / (1.15*PaymentFreq),0) + (MasterTotalExc/PaymentFreq) AS FinalNewMonthlyFee
 mcoetzee
		
			mcoetzee
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Thanks, its working.
