无论如何,我可以限制用户只编辑用户表单中的最后一天数据,并禁用所有其他日期的编辑,请注意同一日期有几个数据。
提前致谢
答案 0 :(得分:1)
以表格VBA写下
Private Sub Form_Current()
if dLast("[YourDateField]" , "[YourTable]") = me.YourFormDate.vlaue then
Me.AllowEdits = True
Else
Me.AllowEdits = False
End if
End Sub