Sub lqxs()
Dim Arr, i&, Sht As Worksheet, n&
n = 1
For Each Sht In Sheets
    If Sht.Name <> "汇总" Then
        Arr = Sht.[b2:e2]
        n = n + 1
        Cells(n, 1) = Sht.Name
        Cells(n, 2).Resize(1, 4) = Arr
    End If
Next
End Sub

  

相关文章:

  • 2021-11-12
  • 2022-01-12
  • 2022-12-23
  • 2021-12-29
  • 2021-12-04
  • 2022-01-14
  • 2021-06-12
猜你喜欢
  • 2021-12-29
  • 2022-12-23
  • 2022-12-23
  • 2021-11-03
  • 2021-12-29
  • 2021-12-14
  • 2022-02-09
相关资源
相似解决方案