VBA - Manejar campo requerido
Esto también te interesa!
PREGUNTAS SIMILARES
#2
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