VBA - Manejar campo requerido



   AUTOR PREGUNTA

Publicado 08 mayo 2014 - 23:12

¿Cómo puedo manejar un campo requerido de Excel con VBA?


¿Tienes la misma pregunta? Yo también

 

Publicado 09 mayo 2014 - 02:08

Necesitas usar los condicionales if:

Function ValidCell(RowPos As Long, ColPos As Long) As Boolean
Dim ws As Worksheet
Dim v As Variant
Set ws = ActiveSheet
v = ws.Cells(RowPos, Colpos).Value
If IsEmpty(v) Or Not IsNumeric(v) Then
ValidCell = False
Else
ValidCell = True
End If
End Function

   AUTOR PREGUNTA

Publicado 09 mayo 2014 - 04:47

Gracias crack con eso lo pude hacer