查找循环内下一个空行的索引(VB Excel)

lsmd5eda  于 2023-02-10  发布在  其他
关注(0)|答案(4)|浏览(169)

我有一个Excel工作表充满了数据节,每个数据节由一个空行分隔。
当我在工作表的每一行上循环时,我需要找到下一个空白行的索引,这样我就可以知道当前数据节的结束位置,并在传递到下一个数据节之前对其进行修改。
下面是我的第一个循环的例子(在这个循环中,我需要找到下一个空行的索引):

  1. Dim x As Integer
  2. Dim lastrow As Long
  3. lastrow = Cells(Rows.Count, "A").End(xlUp).Row
  4. Range("A1").Select
  5. For x = 1 To lastrow
  6. If Left(Cells(x, "A").Value, 8) = "!JOURNAL" And Not (IsEmpty(Cells(x, "H"))) Then
  7. '''Here I need to add another loop to find the index of my next blank row please'''
  8. idxblankrow = Range(Cells(x, "A")).CurrentRegion.Row
  9. MsgBox "Idx blank row is " & idxblkrow
  10. Range(Cells(x + 2, "A"), Cells(idxblankrow - 1, "H")).Cut Range(Cells(x + 2, "B"), Cells(idxblankrow - 1, "I"))
  11. Range(Cells(x, "H")).Select
  12. Selection.Copy
  13. Range(Cells(x + 2, "A"), Cells(idxblankrow - 1, "A")).Select
  14. Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
  15. :=False, Transpose:=False
  16. Application.CutCopyMode = False
  17. End If
  18. Next

下面是另一个失败的尝试(第二个嵌套的For循环试图搜索空行):

  1. Dim x As Integer
  2. Dim lastrow As Long
  3. lastrow = Cells(Rows.Count, "A").End(xlUp).Row
  4. For x = 1 To lastrow
  5. If Left(Cells(x, "A").Value, 8) = "!JOURNAL" And Not (IsEmpty(Cells(x, "H"))) Then
  6. For j = x To lastrow
  7. If IsEmpty(Cells(j, "A")) Then idxblankrow = Cells(j, "A").Row
  8. MsgBox "blank row " & idxblankrow
  9. Exit For
  10. End If
  11. Range(Cells(x + 2, "A"), Cells(idxblankrow - 1, "H")).Cut Range(Cells(x + 2, "B"), Cells(idxblankrow - 1, "I"))
  12. Range(Cells(x, "H")).Select
  13. Selection.Copy
  14. Range(Cells(x + 2, "A"), Cells(idxblankrow - 1, "A")).Select
  15. Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
  16. :=False, Transpose:=False
  17. Application.CutCopyMode = False
  18. End If
  19. Next

任何形式的帮助都将不胜感激,谢谢!

kx5bkwkv

kx5bkwkv1#

请使用下一种适应方式。它不选择,不使用剪贴板:

  1. For x = 1 To LastRow
  2. If left(cells(x, "A").Value, 8) = "!JOURNAL" And Not (IsEmpty(cells(x, "H"))) Then
  3. idxblankrow = cells(x, "A").End(xlDown).Row
  4. MsgBox "Idx blank row is " & idxblankrow
  5. Range(cells(x + 2, "A"), cells(idxblankrow - 1, "H")).Cut cells(x + 2, "B")
  6. 'copy the value from "H" on the whole A:A column portion:
  7. Range("A" & x & ":A" & idxblankrow - 1).Value = cells(x, "H").Value 'not using clipboard...
  8. Stop 'check when stopped here if it did what you need
  9. 'if so, please press F5 to continue and check again.
  10. 'you probably need to increment x to continue iteration after the processed portion
  11. 'something as:
  12. x = x + (idxblankrow - x) + 2 '???
  13. End If
  14. Next x

你现在可能需要用已经处理的行数来增加x,但是必须用语言解释你试图完成什么。猜测不是一种合适的工作方式......

展开查看全部
wooyq4lh

wooyq4lh2#

如果我想知道一整行是否为空,我只需要连接整行并检查长度,如果长度为零,那么该行为空,否则,该行就不是空的。
参见下面的示例性屏幕截图(只有第四行是空的,这在第四个公式中可见,结果为零):

l0oc07j2

l0oc07j23#

使用标志来标识组的开始和结束。这处理组之间的多个空行。

  1. Sub macro()
  2. Dim ws As Worksheet
  3. Dim lastrow As Long, i As Long, n As Long
  4. Dim x As Long, z As Long
  5. Dim bStart As Boolean, bEnd As Boolean
  6. Set ws = ThisWorkbook.Sheets("Sheet1")
  7. n = 0
  8. With ws
  9. lastrow = .Cells(.Rows.Count, "A").End(xlUp).Row
  10. For i = 1 To lastrow
  11. ' start of group
  12. If Len(.Cells(i, "A")) > 0 Then
  13. bStart = True
  14. n = n + 1
  15. End If
  16. ' end of group look ahead
  17. If Len(.Cells(i + 1, "A")) = 0 Then
  18. bEnd = bStart
  19. End If
  20. ' valid range
  21. If bStart And bEnd Then
  22. x = i - n + 1 ' first row of group
  23. MsgBox "Processing rows " & x & " to " & i
  24. If Left(.Cells(x, "A").Value, 8) = "!JOURNAL" _
  25. And Not (IsEmpty(Cells(x, "H"))) Then
  26. ' process rows x to i
  27. End If
  28. ' reset flags
  29. n = 0
  30. bStart = False
  31. bEnd = False
  32. End If
  33. Next
  34. End With
  35. End Sub
展开查看全部
jum4pzuy

jum4pzuy4#

所有这些答案都可以简单得多,想想这个:

  1. iNextBlankRow = Sheet1.Range("A" & iNextBlankRow & ":A50").SpecialCells(xlCellTypeBlanks).Cells(1, 1).Row

要进行演示,请运行以下宏:

  1. Sub BlankRowTest()
  2. Dim iNextBlankRow As Long
  3. Dim r As Long
  4. iNextBlankRow = 1
  5. For r = 1 To 50
  6. If iNextBlankRow <= r Then iNextBlankRow = Sheet1.Range("A" & iNextBlankRow + 1 & ":A50").SpecialCells(xlCellTypeBlanks).Cells(1, 1).Row
  7. Debug.Print r, iNextBlankRow, "'" & Sheet1.Cells(r, 1).Value & "'"
  8. Next
  9. End Sub

这段代码循环遍历前50行,寻找下一个空行,找到后赋给变量iNextBlankRow,直到当前行(r)大于或等于INextBlankRow时才更新变量iNextBlankRow,此时我们再从下一行开始查找。

展开查看全部

相关问题