标题:Python如何整合excel 橫向、直向資料為一個表
只看楼主
kris62
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2019-7-25
 问题点数:0 回复次数:1 
Python如何整合excel 橫向、直向資料為一個表
各位高手好
我是python新手~剛開始學習python
我有一個大量的資料表excel檔(內容大至如附件)
想請問各位~~該如何使用Python整合成一個等級表呢?
謝謝~~
搜索更多相关主题的帖子: Python 整合 excel 附件 
2019-07-25 09:53
qunxingw
Rank: 16Rank: 16Rank: 16Rank: 16
等 级:贵宾
威 望:24
帖 子:1676
专家分:7295
注 册:2011-6-30
得分:0 



程序代码:
Sub deal_data()
Dim r1, n As Integer

r1 = Range("a65530").End(xlUp).Row
r2 = 2

For i = 2 To r1
  
   n = Len(Cells(i, 1)) - 1
   m = Len(Cells(i - 1, 1)) - 1
   
   
   
If r2 < 3 And Right(Cells(i, 1), 1) = 1 Then
    Cells(r2, 6) = Mid(Cells(i, 1), 1, n)
    Cells(r2, 7) = Cells(i, 2)
    End If
   
If Mid(Cells(i, 1), 1, n) = Mid(Cells(i - 1, 1), 1, m) And Right(Cells(i, 1), 1) = 2 Then       '
    Cells(r2, 8) = Cells(i, 2)
    End If
    

 If Mid(Cells(i, 1), 1, n) = Mid(Cells(i - 1, 1), 1, m) And Right(Cells(i, 1), 1) = 3 Then    '
    Cells(r2, 9) = Cells(i, 2)
     r2 = r2 + 1
    End If
   

 If Mid(Cells(i, 1), 1, n) <> Mid(Cells(i - 1, 1), 1, m) And Right(Cells(i, 1), 1) = 1 Then
    Cells(r2, 6) = Mid(Cells(i, 1), 1, n)
    Cells(r2, 7) = Cells(i, 2)
    End If
    
    Next
End Sub

www.qunxingw.wang
2019-08-05 16:28



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-496020-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.259195 second(s), 9 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved