ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

[求助] 求助:同品种数据并成一行

[复制链接]

TA的精华主题

TA的得分主题

发表于 2024-1-18 12:31 | 显示全部楼层
用python代码实现的,效果如图:
要结果的话,回复我:
import pandas as pd


df=pd.read_excel('./exam.xlsx')
print(df.columns)
df['combined']=df['获奖时间'].str.cat([df['奖励内容'] ,df['奖励名词'] ],sep='*')
df.drop(columns=['获奖时间', '奖励内容', '奖励名词'],inplace=True)

print(df)
#下面的agg生成的是dataframe
# print(
#     df.groupby(['班级名','学生名'])
#     .agg(
#         combined=('combined','&'.join)
#     )
#     .ndim
# )

print(
    df.groupby(['班级名','学生名'])['combined']
    .apply('&'.join)
    # .ndim
    .str
    .split('&',expand=True)
)
(    df.groupby(['班级名','学生名'])['combined']
    .apply('&'.join)
    # .ndim
    .str
    .split('&',expand=True)
    .to_excel('result1.xlsx')
     )
image.jpg
PixPin_2024-01-18_12-31-11.png
PixPin_2024-01-18_12-31-26.png

TA的精华主题

TA的得分主题

发表于 2024-1-18 14:02 | 显示全部楼层
参与一下。。。
  1. Sub ykcbf()   '//2024.1.17
  2.     Dim arr, d
  3.     Application.ScreenUpdating = False
  4.     Application.DisplayAlerts = False
  5.     Set d = CreateObject("Scripting.Dictionary")
  6.     With Sheets("模板")
  7.         r = .Cells(.Rows.Count, "a").End(xlUp).Row
  8.         Set Rng = .Range("a2:e" & r)
  9.         With Rng
  10.             .Parent.Sort.SortFields.Clear
  11.             .Sort Key1:=.Item(1), Order1:=1, Key2:=.Item(2), Order2:=1, Header:=2
  12.         End With
  13.         arr = .[a1].Resize(r, 5)
  14.         For i = 2 To UBound(arr)
  15.             s = arr(i, 1) & "|" & arr(i, 2)
  16.             If Not d.exists(s) Then Set d(s) = CreateObject("Scripting.Dictionary")
  17.             d(s)(i) = i
  18.         Next
  19.         ReDim brr(1 To d.Count, 1 To 100)
  20.         For Each k In d.keys
  21.             m = m + 1
  22.             brr(m, 1) = Split(k, "|")(0)
  23.             brr(m, 2) = Split(k, "|")(1)
  24.             c = 2
  25.             For Each kk In d(k).keys
  26.                 For x = 1 To 3
  27.                     c = c + 1
  28.                     brr(m, c) = arr(kk, x + 2)
  29.                 Next
  30.             Next
  31.             Max = IIf(Max < c, c, Max)
  32.         Next
  33.         .[i3:az1000].Clear
  34.         .[k1:az1000].UnMerge
  35.         .[i3].Resize(m, Max) = brr
  36.         .[i1].Resize(m + 2, Max).HorizontalAlignment = xlCenter
  37.         .[i1].Resize(m + 2, Max).VerticalAlignment = xlCenter
  38.         .[i1].Resize(m + 2, Max).Borders.LineStyle = 1
  39.         .[i3].Resize(m, Max).ShrinkToFit = True
  40.         col = 8
  41.         For y = col + 3 To Max + col Step 3
  42.             p = p + 1
  43.             .Cells(1, y).Resize(1, 3) = "荣誉" & p
  44.             .Cells(1, y).Resize(1, 3).Merge
  45.             .Cells(2, y) = "获奖时间"
  46.             .Cells(2, y + 1) = "奖励内容"
  47.             .Cells(2, y + 2) = "奖励名词"
  48.         Next
  49.         .Range(.Cells(1, col + 3), .Cells(1, Max + col)).Cells.Interior.ColorIndex = 4
  50.         .Range(.Cells(2, col + 3), .Cells(2, Max + col)).Cells.Interior.ColorIndex = 6
  51.     End With
  52.     Set d = Nothing
  53.     Application.ScreenUpdating = True
  54.     MsgBox "OK!"
  55. End Sub
复制代码


TA的精华主题

TA的得分主题

发表于 2024-1-18 14:04 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
附件供参考,标题自动写入,标题行自动标色。
QQ图片20240118140254.png

救助:同名数据并成一行.7z

44.57 KB, 下载次数: 10

评分

1

查看全部评分

TA的精华主题

TA的得分主题

 楼主| 发表于 2024-1-18 15:50 | 显示全部楼层
cztanghao 发表于 2024-1-18 12:31
用python代码实现的,效果如图:
要结果的话,回复我:
import pandas as pd

谢谢!!!

TA的精华主题

TA的得分主题

 楼主| 发表于 2024-1-18 15:51 | 显示全部楼层

TA的精华主题

TA的得分主题

发表于 2024-1-19 19:02 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
Sub t()
Dim arr, i, x, y, m, n, k
arr = Range("a1").CurrentRegion
Dim d As Object
Set d = CreateObject("scripting.dictionary")
For i = 2 To UBound(arr)
    If Not d.exists(arr(i, 1) & "-" & arr(i, 2)) Then
        d(arr(i, 1) & "-" & arr(i, 2)) = arr(i, 3) & " " & arr(i, 4) & " " & arr(i, 5)
    Else
        d(arr(i, 1) & "-" & arr(i, 2)) = d(arr(i, 1) & "-" & arr(i, 2)) & " " & arr(i, 3) & " " & arr(i, 4) & " " & arr(i, 5)
    End If
Next
x = d.keys
y = d.items
For i = 1 To d.Count
    m = x(i - 1)
    n = y(i - 1)
    Cells(i + 2, 9) = Split(m, "-")(0)
    Cells(i + 2, 10) = Split(m, "-")(1)
    k = Split(n, " ")
    Cells(i + 2, 11).Resize(1, UBound(k) + 1) = k
Next
End Sub
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

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

GMT+8, 2024-11-19 05:37 , Processed in 0.044035 second(s), 13 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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