ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

[已解决] 清空数据和图片,求指点下思路

[复制链接]

TA的精华主题

TA的得分主题

发表于 2024-5-30 11:53 | 显示全部楼层 |阅读模式
本帖最后由 760636412 于 2024-5-30 17:54 编辑

求大神指点下,谢谢


image.jpg
详细附件: 清空数据.zip (1.43 MB, 下载次数: 10)
image.jpg

TA的精华主题

TA的得分主题

发表于 2024-5-30 12:12 | 显示全部楼层
  1. Private Sub Worksheet_Change(ByVal T As Range)
  2. Dim r&, shp As Shape
  3. If T.Address Like "*:*" Then Exit Sub
  4. r = T.Row
  5. If T.Column = 6 And r > 7 And T = "" Then
  6.     For Each shp In Me.Shapes
  7.         If shp.TopLeftCell.Address = Cells(r, 13).Address Then shp.Delete: Exit For
  8.     Next
  9.     Cells(r, 1).Resize(1, 13).ClearContents
  10. End If
  11. End Sub
复制代码

评分

2

查看全部评分

TA的精华主题

TA的得分主题

发表于 2024-5-30 13:13 | 显示全部楼层

Private Sub Worksheet_Change(ByVal Target As Range)
    If Application.Intersect(Columns(6), Target) Is Nothing Then Exit Sub
    Application.ScreenUpdating = False
    Application.EnableEvents = False
    For Each Rng In Application.Intersect(Columns(6), Target)
        If Rng.Row >= 8 Then
            If Len(Rng) = 0 Then
                Rng.EntireRow.ClearContents
                For Each shp In ActiveSheet.Shapes
                    If shp.TopLeftCell.Address = Cells(Rng.Row, 13).Address Then
                        shp.Delete
                    End If
                Next shp
            End If
        End If
    Next Rng
    Application.EnableEvents = True
    Application.ScreenUpdating = True
End Sub

评分

1

查看全部评分

TA的精华主题

TA的得分主题

发表于 2024-5-30 13:14 | 显示全部楼层
供 参考。。。。。。

清空数据1.zip

71.08 KB, 下载次数: 8

TA的精华主题

TA的得分主题

发表于 2024-5-30 19:04 | 显示全部楼层
Private Sub Worksheet_Change(ByVal Target As Range)
    If Target.Count > 1 Then Exit Sub
    If Target.Row < 7 Then Exit Sub
    If Target.Column = 6 Then
        If Target.Value = "" Then
            Application.EnableEvents = False
                Rows(Target.Row).ClearContents
                Call hasPic(Target.Offset(, 7))
            Application.EnableEvents = True
        End If
    End If
End Sub

Function hasPic(Rng As Range)
    Dim shp As Shape
    For Each shp In Rng.Parent.Shapes
        If shp.Type = 13 Then
            If Abs((shp.Left + shp.Width / 2) - (Rng.Left + Rng.Width / 2)) < (shp.Width + Rng.Width) / 2 And _
               Abs((shp.Top + shp.Height / 2) - (Rng.Top + Rng.Height / 2)) < (shp.Height + Rng.Height) / 2 Then
               shp.Delete
            End If
        End If
    Next
End Function

TA的精华主题

TA的得分主题

发表于 2024-5-30 19:06 | 显示全部楼层
................

清空数据.rar

1.43 MB, 下载次数: 7

评分

1

查看全部评分

您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

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

GMT+8, 2024-11-17 04:43 , Processed in 0.045790 second(s), 11 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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