ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

[求助] 如何根据原始表单元格A1的值将A列相同的固定区域自动调用相应区域数据

[复制链接]

TA的精华主题

TA的得分主题

发表于 2024-11-6 19:11 | 显示全部楼层 |阅读模式
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
原始表中A1的值可选择

根据选择的值,将A列相等对应区域,写入固定区域 如何根据原始表单元格A1的值将A列相同的固定区域自动调用相应区域数据.rar (2.42 KB, 下载次数: 6)

TA的精华主题

TA的得分主题

发表于 2024-11-6 19:17 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
判断,选择该单元格的resize(3,16).copy

TA的精华主题

TA的得分主题

发表于 2024-11-6 19:26 | 显示全部楼层

TA的精华主题

TA的得分主题

 楼主| 发表于 2024-11-6 19:30 | 显示全部楼层
  1. Sub FindValueInRange()
  2.     Dim ws As Worksheet
  3.     Set ws = ThisWorkbook.Sheets("原始表") ' 修改为你的工作表名称
  4.     Dim searchRange As Range
  5.     Set searchRange = ws.Range("A20:A100") ' 修改为你要搜索的区域
  6.     Dim searchValue As String
  7.     searchValue = ws.[A1].Value ' 修改为你要查找的值
  8.     Dim foundCell As Range
  9.     Set foundCell = searchRange.Find(What:=searchValue, LookIn:=xlValues, LookAt:=xlWhole, MatchCase:=False)
  10.     If Not foundCell Is Nothing Then
  11.        ' MsgBox "值找到在: " & foundCell.Address
  12.         ws.[B2:P3].Value = foundCell.Offset(1, 1).Resize(2, 15).Value
  13.     Else
  14.         MsgBox "未找到值。"
  15.     End If
  16. End Sub
复制代码

TA的精华主题

TA的得分主题

发表于 2024-11-6 19:57 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
Private Sub Worksheet_Change(ByVal Target As Range)
    Dim strTar$, tarRng As Range, ar(), n&
   
    If Target.Address <> "$A$1" Then Exit Sub
   
    strTar = [A1].Value
    n = Cells(Rows.Count, "A").End(xlUp).Row
    For i = 20 To n Step 6
        If Cells(i, 1).Value = strTar Then
            Application.EnableEvents = False
            Cells(i, 1).CurrentRegion.Copy
            [A1].PasteSpecial Paste:=xlPasteValues
            Application.EnableEvents = True
            Application.CutCopyMode = False
        End If
    Next i
End Sub

TA的精华主题

TA的得分主题

发表于 2024-11-6 19:58 | 显示全部楼层

TA的精华主题

TA的得分主题

发表于 2024-11-6 20:14 | 显示全部楼层
  1. Private Sub Worksheet_Change(ByVal Target As Range)
  2.     If Target.Count > 1 Then
  3.         Exit Sub
  4.     End If
  5.     If Target.Address = "$A$1" Then
  6.         Set Rng = Columns(1).Find(what:=Target.Value, LookIn:=xlValues, lookat:=xlWhole, searchorder:=xlByRows, searchdirection:=xlPrevious)
  7.         If Not Rng Is Nothing Then
  8.             If Rng.Address <> "$A$1" Then
  9.                 Range("a1:p3").Copy Rng
  10.             End If
  11.         End If
  12.     End If

  13. End Sub
复制代码

TA的精华主题

TA的得分主题

发表于 2024-11-6 20:15 | 显示全部楼层
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

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

GMT+8, 2025-1-30 11:06 , Processed in 0.050371 second(s), 16 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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