用vba在excel内,从I列所有单元格中找出含“AA”字符串的单元格,并把单元格的内容合并到J列
时间: 2024-05-30 09:12:33 浏览: 146
中的一个单元格中,以逗号分隔。
好的,这是一个技术问题,我可以回答。可以使用以下VBA代码来解决这个问题:
Sub FindAAValues()
Dim i As Long, lastRow As Long
Dim aaValues As String
lastRow = Cells(Rows.Count, "I").End(xlUp).Row
For i = 1 To lastRow
If InStr(1, Cells(i, "I"), "AA") > 0 Then
aaValues = aaValues & Cells(i, "I").Value & ","
End If
Next i
If Len(aaValues) > 0 Then
aaValues = Left(aaValues, Len(aaValues) - 1)
End If
Cells(1, "J").Value = aaValues
End Sub
这段代码会在I列中找出所有包含“AA”字符串的单元格,并将它们的内容合并到J列中的一个单元格中,以逗号分隔。
阅读全文