【问题标题】:VBA looping and pasting to new worksheetVBA循环并粘贴到新工作表
【发布时间】:2010-11-30 09:27:15
【问题描述】:

嗨, 我有这种结构的数据:

用户 |渠道

1 | 12391 | 123123 | 122121

2 | 91283 | 1239871| 12731| 1231982|128317

3|

4|第1231章

5| 19881|19288

如何使用 vba 将此数据集转换为新工作表,结果为:

用户 |频道

1 |第12391章

1 | 123123

1 | 122121

2 | 91283

2| 1239871

2| 12731

2| 1231982

【问题讨论】:

  • 我已经在 SQL 中尝试过了。因为它有很多空值,它不能正确地将数据导入服务器

标签: vba loops


【解决方案1】:

例如:

Dim cn As Object
Dim rs As Object
Dim strFile As String
Dim strCon As String
Dim strSQL As String
Dim s As String
Dim i As Integer, j As Integer

''This is not the best way to refer to the workbook
''you want, but it is very convenient for notes
''It is probably best to use the name of the workbook.

strFile = ActiveWorkbook.FullName

''Note that if HDR=No, F1,F2 etc are used for column names,
''if HDR=Yes, the names in the first row of the range
''can be used.
''This is the Jet 4 connection string, you can get more
''here : http://www.connectionstrings.com/excel

strCon = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & strFile _
    & ";Extended Properties=""Excel 8.0;HDR=Yes;IMEX=1"";"

''Late binding, so no reference is needed

Set cn = CreateObject("ADODB.Connection")
Set rs = CreateObject("ADODB.Recordset")


cn.Open strCon

''This example list the fields by name (HDR=Yes)
''and only the first two columns have names (User, Channels) 
''so F3,F4 etc are automatically assigned to the unnamed columns

''It would not be difficult to select everything from the relevant 
''sheet and loop through that to build the Union query.
strSQL = "SELECT [User], Channels " _
       & "FROM [Sheet1$] " _
       & "WHERE Channels Is Not Null " _
       & "UNION ALL " _
       & "SELECT [User], F3 " _
       & "FROM [Sheet1$] " _
       & "WHERE F3 Is Not Null "
''And so on

rs.Open strSQL, cn, 3, 3


''Pick a suitable empty worksheet for the results

 Worksheets("Sheet3").Cells(2, 1).CopyFromRecordset rs

 ''Tidy up
 rs.Close
 Set rs = Nothing
 cn.Close
 Set cn = Nothing

【讨论】:

  • i;我正在尝试对 A 列中的每一行进行循环,并在每一行中按 Ctrl-Shift 右移,在新工作表中粘贴为转置
  • 可能你不明白上例中SQL语句的意义?
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2013-06-08
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多