Ver Mensaje Individual
  #2 (permalink)  
Antiguo 26/04/2010, 14:32
Avatar de Monimo
Monimo
 
Fecha de Ingreso: noviembre-2007
Ubicación: Mexico Df
Mensajes: 742
Antigüedad: 16 años, 5 meses
Puntos: 69
Respuesta: Obtener un Valor de una matriz con tres parametros.

Código:
Cells.Find(What:=SELECCIONDEVALORESQESTANENELERENGLON, After:=ActiveCell, LookIn:=xlFormulas, _
        LookAt:=xlWhole, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
        MatchCase:=False, SearchFormat:=False).Activate
        rowt = ActiveCell.Row
        colt = ActiveCell.Column
		
		Cells.Find(What:=SELECCIONDEVALORESQESTANENCOLUMNA, After:=ActiveCell, LookIn:=xlFormulas, _
        LookAt:=xlWhole, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
        MatchCase:=False, SearchFormat:=False).Activate
        rowC = ActiveCell.Row
        colC = ActiveCell.Column

		
		TUCELDAES=CELLS(ROWT,COLC).VALUE
		MSGBOX(TUCELDAES)