我正在研究一个使用唯一 ID 号和关联日期的代码,以查看工作表中是否已经存在相同的记录。这是我的代码:
第一个代码的一部分:
Else
'If all the data has been entered, go to New_Record
Check_Record ID:=Sheets("Information").Range("A1").Value, vDate:=Sheets("Information").Range("A2").Value
End If
End Sub
第一个代码之后的第二个代码:
Function Record(ID As String, vDate As String)
Dim Current_ID_List As Range
Dim vCaseWasFound, vDateWasFound, vLastDataRow As Range
Dim DestinationRow As Integer
Dim Go_ahead_msg As String
Set ID_List = Sheets("Records").Range("A:A")
Set Date_List = Sheets("Records").Range("D:D")
'-- determine whether record exists
Set vCaseWasFound = ID_List.Find(What:=ID, LookIn:=xlValues, LookAt:=xlWhole, SearchOrder:=xlByRows)
Set vDateWasFound = Date_List.Find(What:=vDate, LookIn:=xlValues, LookAt:=xlWhole, SearchOrder:=xlByRows)
Set vLastDataRow = Sheets("RawData").Cells.Find(What:="*", SearchDirection:=xlPrevious, SearchOrder:=xlByRows)
If Not vCaseWasFound Is Nothing And Not vDateWasFound Is Nothing Then
Go_ahead_msg = "The record already exists."
Else
Go_ahead_msg = "This is a new record."
End If
If MsgBox(Go_ahead_msg, vbQuestion + vbYesNo) = vbYes Then
New_Record
Sheets("Sheet1").Activate
Else
With Sheets("Records")
.Activate
.Range("A1").Select
End With
End If
End Function
我遇到代码无法识别某些格式的相同日期的问题。如果我有相同的 ID 和相同的日期(格式如 2012 年 12 月 12 日),那么代码会将其识别为相同的记录,并给出“记录已存在”的消息。但是,如果日期的格式为 1/1/2013 或 4/15/2012 或 4/1/2013,则代码不会将其识别为同一日期。