Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 
					
				
		
Hola tego el siguiente problema: Estoy intentando agregar una dimension a una tabla pivotante. La tabla tienen una columna socio y un importe segun sea el importe quiero clasificar dicho saldo como deudor si es mayor a 0 acredor si es menor a 0. La formula que utilizo es la siguiente:
=IF( SUM(m_importe) >= 1, 'deudor', 'acreedor' )
El problema que tengo es que la columna donde deberia aparecer la clasificacion me da error
Alguien puede orientarme sobre que estoy haciendo mal ?
 
					
				
		
 martin59
		
			martin59
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hi,
I don't speak spanish but you can try this :
=IF( aggr(SUM(m_importe), nroCuenta, nombreSocio) >= 1, 'deudor', 'acreedor' )
Hope that helps you
Martin Favier
 
					
				
		
 martin59
		
			martin59
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hi,
I don't speak spanish but you can try this :
=IF( aggr(SUM(m_importe), nroCuenta, nombreSocio) >= 1, 'deudor', 'acreedor' )
Hope that helps you
Martin Favier
 
					
				
		
 alexandros17
		
			alexandros17
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		The contition IF( SUM(m_importe) >= 1, 'deudor', 'acreedor' ) must be an expression not a dimension, aggr the condition by dimension, it had to work.
 
					
				
		
 martin59
		
			martin59
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hi,
I don't speak spanish but you can try this :
=IF( aggr(SUM(m_importe), nroCuenta, nombreSocio) >= 1, 'deudor', 'acreedor' )
Hope that helps you
Martin Favier
 
					
				
		
 martin59
		
			martin59
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hi,
I don't speak spanish but you can try this :
=IF( aggr(SUM(m_importe), nroCuenta, nombreSocio) >= 1, 'deudor', 'acreedor' )
Hope that helps you
Martin Favier
