![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
26/04/2010, 14:32
|
![Avatar de Monimo](http://static.forosdelweb.com/customavatars/avatar203653_12.gif) | | | Fecha de Ingreso: noviembre-2007 Ubicación: Mexico Df
Mensajes: 742
Antigüedad: 17 años, 2 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)
|