ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

搜索
EH技术汇-专业的职场技能充电站 妙哉!函数段子手趣味讲函数 Excel服务器-会Excel,做管理系统 效率神器,一键搞定繁琐工作
HR薪酬管理数字化实战 Excel 2021函数公式学习大典 Excel数据透视表实战秘技 打造核心竞争力的职场宝典
让更多数据处理,一键完成 数据工作者的案头书 免费直播课集锦 ExcelHome出品 - VBA代码宝免费下载
用ChatGPT与VBA一键搞定Excel WPS表格从入门到精通 Excel VBA经典代码实践指南
12
返回列表 发新帖
楼主: 讲古派

[求助] 如何修改了单元格中的内容弹出提示

[复制链接]

TA的精华主题

TA的得分主题

发表于 2012-5-20 15:48 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
讲古派 发表于 2012-5-20 11:22
另外还有两个小问题.如果我一个数据改了两次.能不能把两次修改记录都保留,而不是把前一次的批注清除,再重新 ...
  1. Dim yuan
  2. Private Sub Worksheet_Change(ByVal Target As Range)
  3. If Target.Count > 1 Then Exit Sub
  4. If yuan = "" Then Exit Sub
  5. If Target.Value <> "" Then
  6.     If Target.Value <> yuan Then
  7.         xg = MsgBox("如需修改数据请按“确定”,否则按“取消”", vbOKCancel, "提示")
  8.         If xg = 1 Then
  9.             If Target.Comment Is Nothing Then
  10.                 Target.AddComment
  11.                 Target.Comment.Text Text:=Date & "由" & yuan & "改成" & Target.Value
  12.             Else
  13.                 Target.Comment.Text Text:=Target.Comment.Text & vbCrLf & Date & "由" & yuan & "改成" & Target.Value
  14.             End If
  15.         Else
  16.             Target.Value = yuan
  17.         End If
  18.     End If
  19. End If
  20. End Sub
  21. Private Sub Worksheet_SelectionChange(ByVal Target As Range)
  22. If Target.Count > 1 Then Exit Sub
  23. yuan = Target
  24. End Sub
复制代码

TA的精华主题

TA的得分主题

 楼主| 发表于 2012-5-20 16:10 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
感谢.已经达到我要的意思了.但又有一个BUG.

Dim yuan
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Count > 1 And Target.Column > 30 Then Exit Sub
If yuan = "" Then Exit Sub
If Target.Value <> "" Then
    If Target.Value <> yuan Then
        xg = MsgBox("如需修改数据请按“确定”,否则按“取消”", vbOKCancel, "提示")
        If xg = 1 Then
        If Target.Comment Is Nothing Then
                Target.AddComment
                Target.Comment.Text Text:=Date & "由" & yuan & "改成" & Target.Value
            Else
                Target.Comment.Text Text:=Target.Comment.Text & vbCrLf & Date & "由" & yuan & "改成" & Target.Value
            End If
        
        Else
            Target.Value = yuan
        End If
    End If
End If
End Sub

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Target.Count > 1 And Target.Column > 30 Then Exit Sub
yuan = Target

后来发现将程序作用于整个工作簿还是会出问题,因为有些表被修改了并不要紧.比如查询表.
于是还是放到了需要保护的工作表中.可是我是设置的当列号大于30时.退出程序.但我在大于
30的列号的单元格中修改内容,还是会弹出提示.这是怎么回事.

TA的精华主题

TA的得分主题

发表于 2012-5-20 16:16 | 显示全部楼层
讲古派 发表于 2012-5-20 16:10
感谢.已经达到我要的意思了.但又有一个BUG.

Dim yuan

If Target.Count > 1 or Target.Column > 30 Then Exit Sub

TA的精华主题

TA的得分主题

 楼主| 发表于 2012-5-20 16:21 | 显示全部楼层
原来如此.呵呵.范了一个低级错误.谢谢你changxuegu

TA的精华主题

TA的得分主题

发表于 2012-9-27 17:12 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
还是有个问题,当选择多个单元格时,并且所选择的多个单元格中有一个或多个空的单元格,这个时候修改数据不能触发事件

TA的精华主题

TA的得分主题

发表于 2018-10-15 11:42 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
本帖最后由 xijiagao 于 2018-10-15 14:08 编辑

我是这么改的  去除了批注 增加了如果删掉内容也会提示 另外如果删除的是公式 如果不想删除 会返回原来的公式 防止公式修改我之前用的数据有效性 这个代码在对防止表格被误操作很有用 有一个小的bug  用delete删的话 对话框会提示两次 哪位大神给看看

Dim yuan
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Target.Count > 1 Then Exit Sub
yuan = Target.Value
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Count > 1 Then Exit Sub
If yuan = "" Then Exit Sub
If Target.Value = "" Then
xg = MsgBox("正在删除单元格数据... 按“确定”删除,按“取消”不删除", vbOKCancel + vbDefaultButton2, "删除提示")
If xg > 1 Then
Application.Undo '撤销 相当于ctrl+z
End If
End If
If Target.Value <> "" Then
If yuan <> Target.Value Then
xg = MsgBox("正在修改单元格数据... 按“确定”修改,按“取消”不修改", vbOKCancel + vbDefaultButton2, "修改提示")
If xg > 1 Then
Application.Undo '撤销 相当于ctrl+z
End If
End If
End If
End Sub
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

手机版|关于我们|联系我们|ExcelHome

GMT+8, 2025-1-17 03:06 , Processed in 0.023239 second(s), 7 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

沪公网安备 31011702000001号 沪ICP备11019229号-2

本论坛言论纯属发表者个人意见,任何违反国家相关法律的言论,本站将协助国家相关部门追究发言者责任!     本站特聘法律顾问:李志群律师

快速回复 返回顶部 返回列表