Ver Mensaje Individual
  #2 (permalink)  
Antiguo 11/12/2008, 05:04
rockbirra
 
Fecha de Ingreso: noviembre-2008
Mensajes: 37
Antigüedad: 15 años, 6 meses
Puntos: 0
Respuesta: Evaluar formula en macro

Solucionado!

al final lo he conseguido así:

__For z = 1 To 32
____Sheets("Hoja1").Select
____Cells(z, j).Select
____If Cells(z, j).Value = "" Then
______Sheets("Hoja2").Select
______ActiveCell.Formula = ""
____Else
______Sheets("Hoja2").Select
______ActiveCell.Formula = "='Hoja1'!" + columna + CStr(z)
____End If
____ActiveCell.Offset(1, 0).Select
__Next z


Saludos!