我的Excel宏当前连接两列,单位和数字。数字是根据ID拉出来的,有时我希望与单位连接的数字可能不存在于该特定ID。我使用查找最后一行,但在某些情况下不起作用,因为我希望与单位连接的数字仅从第6行开始,有时第8行,但它至少会从第2行开始。第1行包含标题。
我想忽略空行,并且不给它一个查找到第100行的范围,例如,因为我有时可能有超过100行。下面的代码是我目前拥有的,如果列完全填充到最后,它就可以工作。
rowEmpty = 2
Do While IsEmpty(ws_Export.cells(rowEmpty, 9)) = False
rowEmpty = rowEmpty + 1
Loop
'rowEmpty is now set as the first empty row (sets the range of the table)
'Add units within the same cell as the shunt
For s = 2 To rowEmpty - 1
cells(s, 9) = cells(s, 9) & " " & cells(s, 8)
Next s
1条答案
按热度按时间flvtvl501#
非空拼接
J
更换为I
,以根据需要进行更换。