|    
			
				18/07/2008, 15:20
			
			
			  | 
  |   |  |  |  |  Fecha de Ingreso: julio-2006 Ubicación: Lima, Peru 
						Mensajes: 708
					 Antigüedad: 19 años, 3 meses Puntos: 18 |  | 
  |  Respuesta: Validad campo para ejecutar macro Excel  
  Pues usando el evento Change de la hoja en cuestion, no deberias tener problemas:
 Private Sub Worksheet_Change(ByVal Target As Range)
 If Target.Address ="$A$6" then
 Select Case Target.value
 Case "Ventas"
 Call Ventas
 Case "Operaciones"
 Call Operaciones
 Case Else
 End Select
 Else
 exit Sub
 end IF
 End Sub
 
 Hummm... o algo asi, lo estoy haciendo de memoria y a lo rapido, pero guiate con eso
 
 Abraham
 
 PD: El "Call" se puede obviar
     |