excel VBA在不应插入数据的位置插入数据

vybvopom  于 2023-05-30  发布在  其他
关注(0)|答案(1)|浏览(201)

因此,我试图创建一个VBA,复制数据从4张表,具有相同的结构到另一张表,在该表中,我有额外的两列,年月和SourceSheet。源表列应包含数据来自4个工作表中的哪一个工作表的信息,并根据从计算表单元格F1中选择的月份填充年月。问题是yearmonth和sourcesheet列继续将数据一直放在它们不应该在的地方。例如,第298行是最后一行,除了sourcesheet和yearmonth之外,所有其他列都很好,因为某些原因,它们一直延续到第400行。
我主要使用chatgpt的帮助,因为我是VBA的初学者,它仍然给了我一个代码,有同样的问题。你能帮我什么是错的吗?
代码为:

  1. Sub CopyDataToDataSheet()
  2. Dim dataSheet As Worksheet
  3. Dim inputSheet As Worksheet
  4. Dim calculationSheet As Worksheet
  5. Dim lastRow As Long
  6. Dim yearMonthValue As Variant
  7. Dim confirmation As Integer
  8. Dim yearMonthColumn As Range
  9. Dim sourceSheetColumn As Range
  10. Dim dataRange As Range
  11. Dim sourceSheetNames As Variant
  12. Dim dataLastRow As Long`
  13. ' Set the data sheet
  14. Set dataSheet = ThisWorkbook.Worksheets("Data Archive")
  15. ' Unfilter the data sheet
  16. If dataSheet.AutoFilterMode Then
  17. dataSheet.AutoFilterMode = False
  18. End If
  19. ' Set the calculation sheet
  20. Set calculationSheet = ThisWorkbook.Worksheets("Calculation")
  21. ' Find the column index of "SourceSheet" in the data sheet
  22. Set sourceSheetColumn = dataSheet.Rows(1).Find("SourceSheet", LookIn:=xlValues, LookAt:=xlWhole)
  23. ' Loop through the input sheets
  24. sourceSheetNames = Array("sheet1", "sheet2", "sheet3", "sheet4")
  25. For Each inputSheet In ThisWorkbook.Worksheets(sourceSheetNames)
  26. ' Find the last row in the data sheet
  27. lastRow = dataSheet.Cells(dataSheet.Rows.Count, "A").End(xlUp).Row
  28. ' Copy the data from the input sheet to the data sheet
  29. Set dataRange = inputSheet.UsedRange.Offset(1)
  30. dataRange.Copy dataSheet.Cells(lastRow + 1, "A")
  31. ' Get the value from cell F1 of the Calculation sheet
  32. yearMonthValue = calculationSheet.Range("F1").Value
  33. ' Check if "SourceSheet" column exists
  34. If Not sourceSheetColumn Is Nothing Then
  35. ' Find the last row of imported data in column A
  36. dataLastRow = lastRow + dataRange.Rows.Count
  37. ' Assign the source sheet name to the "SourceSheet" column in the data sheet for each row
  38. dataSheet.Range(dataSheet.Cells(lastRow + 1, sourceSheetColumn.Column), dataSheet.Cells(dataLastRow, sourceSheetColumn.Column)).Value = inputSheet.Name
  39. ' Clear the remaining cells in the "SourceSheet" column below the imported data
  40. dataSheet.Range(dataSheet.Cells(dataLastRow + 1, sourceSheetColumn.Column), dataSheet.Cells(dataSheet.Rows.Count, sourceSheetColumn.Column)).ClearContents
  41. End If
  42. ' Find the column index of "YearMonth" in the data sheet
  43. Set yearMonthColumn = dataSheet.Rows(1).Find("YearMonth", LookIn:=xlValues, LookAt:=xlWhole)
  44. ' Check if "YearMonth" column exists
  45. If Not yearMonthColumn Is Nothing Then
  46. ' Assign the yearMonthValue to the "YearMonth" column in the data sheet for each row
  47. dataSheet.Range(dataSheet.Cells(lastRow + 1, yearMonthColumn.Column), dataSheet.Cells(dataLastRow, yearMonthColumn.Column)).Value = yearMonthValue
  48. ' Clear the remaining cells in the "YearMonth" column below the imported data
  49. dataSheet.Range(dataSheet.Cells(dataLastRow + 1, yearMonthColumn.Column), dataSheet.Cells(dataSheet.Rows.Count, yearMonthColumn.Column)).ClearContents
  50. End If
  51. ' Delete the data from the input sheet
  52. ' dataRange.ClearContents
  53. Next inputSheet
  54. ' Display success message
  55. MsgBox "Data imported successfully."
  56. End Sub`
fykwrbwg

fykwrbwg1#

不清楚为什么你得到了数百行的结果。你的数据中可能有一些奇怪的东西。有时在Excel中,当您在VBA中使用“UsedRange”时,会出现不可见的数据甚至格式。所以你可以尝试引入一个“ReallyUsedRange”函数来代替inputSheet.UsedRange。例如,请参见此处:getting-the-actual-usedrange
我在下面放了一个新版本的代码。
关于ChatGPT代码的一些想法:

  • 验证应该在代码的前面进行,而不是在循环内部进行。因此,如果列索引无法解析,甚至不需要启动循环。
  • 您希望总是让用户知道什么时候事情没有正确工作(即,如果验证失败)。
  • 验证似乎也有点随意-列被验证,但不是其他工作表是否存在,或找到正确的年日期值,或输入数据是否具有正确的形状(列数)。也许这一切都与你的“说明”ChatGPT虽然。
  • 复制数据的行计数不起作用。
  • 它也不能正确处理空输入表。
  • 我看不出有什么理由要清除复制到DataArchive中的数据下面的数据,因为根据定义,复制到最后一行的数据下面没有数据。
  • 如上所述,如果您不小心并了解如何使用它,UsedRange有点不可靠。
  • 我们的工作似乎仍然是安全的,至少现在是这样:)尽管如此,令人印象深刻,所以继续关注ChatGPT的发展。

新代码:

  1. Sub CopyDataTowsTarget()
  2. Dim wsTarget As Worksheet
  3. Dim wsSource As Worksheet
  4. Dim yearMonth As Variant
  5. Dim i As Long
  6. Dim j As Long
  7. Dim r As Range
  8. Dim s_col As Long
  9. Dim y_col As Long
  10. Dim arr
  11. 'Prequisites
  12. ' Sheet named DataArchive with columns A, B, C, D, SourceSheet, YearMonth and some random data in cells A2:D10
  13. ' Sheet named Calculation with '2023-05' in cell F1
  14. ' four sheets sheet1, sheet2, sheet3, sheet4 with random data in cells A2:D10 (may be a few more or less rows)
  15. ' Set the data sheet
  16. Set wsTarget = ThisWorkbook.Worksheets("Data Archive")
  17. 'only to make things go faster while debugging
  18. 'wsTarget.Range("A11:J1000").Clear
  19. If wsTarget.AutoFilterMode Then
  20. wsTarget.AutoFilterMode = False
  21. End If
  22. yearMonth = Worksheets("Calculation").Range("F1").Value
  23. ' Get the MonthYear and SourceSheet column indexes
  24. Set r = wsTarget.Rows(1).Find("SourceSheet", LookIn:=xlValues, LookAt:=xlWhole)
  25. If r Is Nothing Then
  26. MsgBox "Source Sheet Column not Found!"
  27. Exit Sub
  28. Else
  29. s_col = r.Column
  30. End If
  31. Set r = wsTarget.Rows(1).Find("YearMonth", LookIn:=xlValues, LookAt:=xlWhole)
  32. If r Is Nothing Then
  33. MsgBox "Source Sheet Column not Found!"
  34. Exit Sub
  35. Else
  36. y_col = r.Column
  37. End If
  38. ' Copy data from input sheets to Archive sheet
  39. arr = Array("sheet1", "sheet2", "sheet3", "sheet4")
  40. For Each wsSource In Worksheets(arr)
  41. i = wsTarget.Cells(wsTarget.Rows.Count, "A").End(xlUp).Row + 1
  42. Set r = wsSource.UsedRange.Offset(1)
  43. If r.Rows.Count > 1 Then
  44. Set r = wsSource.UsedRange.Offset(1)
  45. Set r = r.Resize(r.Rows.Count - 1)
  46. r.Copy
  47. wsTarget.Cells(i, "A").PasteSpecial xlPasteValuesAndNumberFormats
  48. wsTarget.Cells(i, s_col).Resize(r.Rows.Count).Value = wsSource.Name
  49. wsTarget.Cells(i, y_col).Resize(r.Rows.Count).Value = yearMonth
  50. ' dataRange.ClearContents
  51. End If
  52. Next wsSource
  53. ' Display success message
  54. MsgBox "Data imported successfully."
  55. End Sub

如果您的输入工作表没有标题,则需要对代码进行一些调整。另外,如果您不希望粘贴的值被调整(我通常使用PasteSpecialxlPasteValuesAndNumberFormats,因为通常对于存档,您希望原始数据而不必担心错误的公式引用。

展开查看全部

相关问题