Private Sub Workbook_Open()
Dim i, j As Integer
Dim a, b As String
Sheets.Add
Sheet1.Select
For i = 3 To 150
If Application.WorksheetFunction.CountA(Rows(i)) = 0 Then
i = i + 1
Else
If Cells(i, 10) <> "=" Then
For j = 1 To 10
If Cells(i, j) <> "" Then
a = Trim(Cells(i, j) & Cells(i, j))
Sheets.Cells(i, 2) = a ''我本来想把内容复制到新增的工作薄中去
End If