¿Cómo puedo manejar un campo requerido de Excel con VBA?
VBA - Manejar campo requerido
Iniciado por
Nello
, may 08 2014 23:12
Esto también te interesa!
#2
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