Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I am trying to get the total(sum) of a field based on more than one condition. Suggestions?
=Sum({$<X_BANK_ACCT_KEY ={'RFND'}>}AND {$<X_BUSINESS_UNIT = {'80801'}>} AND {$<X_PAID_AMT <={'10.00'}>}, X_PAID_AMT)
Error in Expression
Try this
=Sum({$<X_BANK_ACCT_KEY = {'RFND'}, X_BUSINESS_UNIT = {'80801'}, X_PAID_AMT = {"<=10.00"}>} X_PAID_AMT)
					
				
			
			
				
			
			
			
				
			
			
			
			
			
		Try this
=Sum({$<X_BANK_ACCT_KEY = {'RFND'}, X_BUSINESS_UNIT = {'80801'}, X_PAID_AMT = {"<=10.00"}>} X_PAID_AMT)
					
				
			
			
				
			
			
			
			
			
			
			
		Perfect!!!!!!!!! Thank you!!!