ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

[求助] 请教数据汇总

[复制链接]

TA的精华主题

TA的得分主题

发表于 2024-10-12 16:17 | 显示全部楼层
VBA参与一下,仅供参考。。。
image.png
image.png

体检数据汇总.zip

18.88 KB, 下载次数: 3

评分

2

查看全部评分

TA的精华主题

TA的得分主题

发表于 2024-10-12 16:18 | 显示全部楼层
代码如下。。。
Sub test()
    Dim wb As Workbook, sht As Worksheet
    Application.ScreenUpdating = False
    Set wb = ThisWorkbook
    Set sh1 = wb.Sheets("血常规")
    Set sh2 = wb.Sheets("生化")
    Set sh3 = wb.Sheets("名单")
    Set sh4 = wb.Sheets("汇总")
    arr = sh1.[a1].CurrentRegion
    brr = sh2.[a1].CurrentRegion
    crr = sh3.[a1].CurrentRegion
    n = 0
    Set d = CreateObject("scripting.dictionary")
    Set d1 = CreateObject("scripting.dictionary")
    ReDim drr(1 To UBound(crr) - 1, 1 To 100)
    For i = 2 To UBound(crr)
        d(crr(i, 1)) = i
    Next
    For i = 2 To UBound(arr)
        If arr(i, 1) = Empty Then arr(i, 1) = arr(i - 1, 1)
        If Not d1.exists(arr(i, 2)) And arr(i, 2) <> Empty Then n = n + 1: d1(arr(i, 2)) = n
        If d.exists(Trim(arr(i, 1))) And arr(i, 2) <> Empty Then
            x = d(Trim(arr(i, 1))): y = d1(arr(i, 2))
            drr(x - 1, y) = arr(i, 3)
        End If
    Next
    For i = 2 To UBound(brr)
        If brr(i, 1) = Empty Then brr(i, 1) = brr(i - 1, 1)
        If Not d1.exists(brr(i, 2)) And brr(i, 2) <> Empty Then n = n + 1: d1(brr(i, 2)) = n
        If d.exists(Trim(brr(i, 1))) And brr(i, 2) <> Empty Then
            x = d(Trim(brr(i, 1))): y = d1(brr(i, 2))
            drr(x - 1, y) = brr(i, 3)
        End If
    Next
    With sh4
        .UsedRange.Clear
        .[a1].Resize(UBound(crr), UBound(crr, 2)) = crr
        .Cells(1, UBound(crr, 2) + 1).Resize(, n) = d1.keys
        .Cells(2, UBound(crr, 2) + 1).Resize(UBound(drr), n) = drr
        .UsedRange.Borders.LineStyle = 1
        .UsedRange.HorizontalAlignment = xlCenter
        .UsedRange.Columns.AutoFit
    End With
    Beep
    Set d = Nothing
    Set d1 = Nothing
    Application.ScreenUpdating = True
End Sub

评分

2

查看全部评分

TA的精华主题

TA的得分主题

发表于 2024-10-12 17:00 | 显示全部楼层
=LET(a,VSTACK(血常规!A2:C5000,生化!A2:C5000),b,FILTER(a,INDEX(a,,2)<>""),c,TRIM(SCAN(,TAKE(b,,1),LAMBDA(x,y,IF(y="",x,y)))),d,DROP(REDUCE("",c,LAMBDA(m,n,VSTACK(m,XLOOKUP(n,名单!A2:A11,名单!A2:E11)))),1),e,PIVOTBY(d,INDEX(b,,2),TAKE(b,,-1),SINGLE,0,0,,0,),HSTACK(VSTACK(A1:E1,DROP(TAKE(e,,5),1)),TAKE(e,,-6)))

image.png

评分

1

查看全部评分

TA的精华主题

TA的得分主题

 楼主| 发表于 2024-10-12 17:43 | 显示全部楼层
1786024734 发表于 2024-10-12 15:54
F2=TRANSPOSE(VSTACK(OFFSET(血常规!$A$1,IFNA(MATCH(A2,TRIM(血常规!A:A),)-1,99),2,4),OFFSET(生化!$A$1, ...

谢谢老师,可以直接用

TA的精华主题

TA的得分主题

发表于 2024-10-12 18:19 | 显示全部楼层
  1. =LET(s,VSTACK(血常规!$A$2:$C$33,生化!$A$2:$C$17),XLOOKUP($A2&F$1,TRIM(SCAN(,TAKE(s,,1),LAMBDA(x,y,IF(y="",x,y))))&CHOOSECOLS(s,2),TAKE(s,,-1),""))
复制代码
1.png

评分

1

查看全部评分

TA的精华主题

TA的得分主题

 楼主| 发表于 2024-10-26 00:09 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
quqiyuan 发表于 2024-10-12 16:17
VBA参与一下,仅供参考。。。

体检数据汇总.rar (17 KB, 下载次数: 3) 有些新问题,老师看看能不能帮忙解决,谢谢了

TA的精华主题

TA的得分主题

发表于 2024-10-26 09:16 | 显示全部楼层
=LET(s,HSTACK(SCAN("",VSTACK(血常规!A2:A33,生化!A2:A17),LAMBDA(x,y,IF(y="",x,TRIM(y)))),VSTACK(血常规!B2:B33,生化!B2:B17),VSTACK(血常规!C2:C33,生化!C2:C17)),IFNA(XLOOKUP(A2:A11&F1:K1,TAKE(s,,1)&CHOOSECOLS(s,2),TAKE(s,,-1)),""))
95af349188782f5737bf1f9a3d189d5.png

评分

1

查看全部评分

TA的精华主题

TA的得分主题

发表于 2024-10-26 14:12 | 显示全部楼层
Python+Pandas:
import pandas as pd

f = pd.ExcelFile('pandas exercise/sample529.xlsx')
df = pd.concat([f.parse(xs, index_col=0) for xs in f.sheet_names[:2]])
df.index = df.index.to_series().str.strip().ffill()
df1 = f.parse('名单', index_col=0)
df1.join(df.pivot(columns='项目名称').droplevel(0, axis=1)).fillna('')
image.png

评分

1

查看全部评分

TA的精华主题

TA的得分主题

发表于 2024-10-27 18:46 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
本帖最后由 quqiyuan 于 2024-10-27 19:20 编辑
lshn2015 发表于 2024-10-26 00:09
有些新问题,老师看看能不能帮忙解决,谢谢了

不知道是不是这个意思,只要有第一列和第一行,然后把数据筛选出来,仅供参考。。。

image.png
提取数据填充本身色.gif
image.png

体检数据汇总(1).zip

21.28 KB, 下载次数: 1

评分

2

查看全部评分

TA的精华主题

TA的得分主题

发表于 2024-10-27 18:47 | 显示全部楼层
代码如下。。。
Sub test()
    Dim wb As Workbook, sht As Worksheet
    Application.ScreenUpdating = False
    Set wb = ThisWorkbook
    Set sh1 = wb.Sheets("血常规")
    Set sh2 = wb.Sheets("生化")
    Set sh3 = wb.Sheets("名单")
    Set sh4 = wb.Sheets("汇总")
    Set sh5 = wb.Sheets("想要的效果")
    arr = sh1.[a1].CurrentRegion
    brr = sh2.[a1].CurrentRegion
    crr = sh3.[a1].CurrentRegion
    frr = sh5.[a1].CurrentRegion
    grr = Application.Index(frr, 1)
    ReDim hrr(1 To UBound(frr) - 1, 1 To 2)
    n = 0
    Set d = CreateObject("scripting.dictionary")
    ReDim drr(1 To UBound(frr) - 1, 1 To UBound(frr, 2))
    For i = 2 To UBound(frr)
        If frr(i, 1) <> Empty Then n = n + 1: d(frr(i, 1)) = n: drr(n, 1) = frr(i, 1)
        If sh5.Cells(i, 1).Interior.Color <> 0 Then hrr(i - 1, 1) = i: hrr(i - 1, 2) = sh5.Cells(i, 1).Interior.Color
    Next
    For i = 2 To UBound(crr)
        If d.exists(crr(i, 1)) Then
            For j = 2 To UBound(crr, 2)
                drr(d(crr(i, 1)), j) = crr(i, j)
            Next
        End If
    Next
    For i = 2 To UBound(arr)
        If arr(i, 1) = Empty Then arr(i, 1) = arr(i - 1, 1)
        If d.exists(Trim(arr(i, 1))) And arr(i, 2) <> Empty Then
            x = d(Trim(arr(i, 1))): y = Application.Match(arr(i, 2), grr, 0)
            drr(x, y) = arr(i, 3)
        End If
    Next
    For i = 2 To UBound(brr)
        If brr(i, 1) = Empty Then brr(i, 1) = brr(i - 1, 1)
        If d.exists(Trim(brr(i, 1))) And brr(i, 2) <> Empty Then
            x = d(Trim(brr(i, 1))): y = Application.Match(brr(i, 2), grr, 0)
            drr(x, y) = brr(i, 3)
        End If
    Next
    With sh5
        .UsedRange.Clear
        .[a1].Resize(UBound(frr), UBound(frr, 2)) = frr
       .Cells(2, 1).Resize(UBound(drr), UBound(drr, 2)).NumberFormat = "@"
        .Cells(2, 1).Resize(n, UBound(drr, 2)) = drr
        .Cells(1, 1).Resize(n + 1, UBound(drr, 2)).Borders.LineStyle = 1
        .Cells(1, 1).Resize(n + 1, UBound(drr, 2)).HorizontalAlignment = xlCenter
        .Cells(1, 1).Resize(n + 1, UBound(drr, 2)).Columns.AutoFit
        For i = 1 To UBound(hrr)
            If hrr(i, 1) <> Empty Then .Cells(i + 1, 1).Resize(, UBound(drr, 2)).Interior.Color = hrr(i, 2)
        Next
    End With
    Beep
    Set d = Nothing
    Application.ScreenUpdating = True
    Beep
End Sub

评分

1

查看全部评分

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

本版积分规则

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

GMT+8, 2024-12-22 19:10 , Processed in 0.048361 second(s), 10 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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