Featured Replies
Archivado
Este tema está ahora archivado y está cerrado a más respuestas.
A better way to browse. Learn more.
A full-screen app on your home screen with push notifications, badges and more.
Este tema está ahora archivado y está cerrado a más respuestas.
Estimados necesito ayuda con esto, necesito que en dos columnas continuas me evalúe el criterio de duplicidad, copie esta macro y solo me funciona en una columna y no en las dos
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Not Intersect([h103:g10], Target) Is Nothing Then ActiveCell.Select
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column <> 8 Then Exit Sub
If Application.CountIf([h103:g10], Target) > 1 Then
MsgBox " ¡¡¡ Lugar ya se encuentra asignado !!!"
Application.Undo
End If
End Sub
atento a su respuesta
Marcos