Created
April 5, 2019 08:12
-
-
Save DuongAQ/8b0ba7b2afbe477c417611d6fc6d9d00 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sub KiemTra() | |
Dim CheckMa As Integer | |
Dim SoDong As Long | |
CheckMa = Range("E4").Value | |
SoDong = Range("E5").Value | |
If CheckMa = 0 Then | |
MsgBox "Ma khong ton tai" | |
Exit Sub | |
Else | |
Sheet1.Range("C" & SoDong).Value = "X" | |
MsgBox "Thanh cong" | |
End If | |
End Sub |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment