0
我必須用空白替換任何一行的最後一列中的逗號。我在Excel中有下面的內容。用vba中的空白替換逗號
1 _1 "",
2 _2 "",
3 _3 "",
4 _4 "",
5 _5 "",
我的代碼。但它不起作用。
Private Sub CommandButton1_Click()
Dim lRow As Long
Dim length As Long
'Find the last non-blank cell in column A(1)
lRow = Cells(Rows.Count, 1).End(xlUp).Row
length = Len(Range("C" & lRow)) - 1
Range("C" & lRow).Value = Replace(Range("C" & lRow), ",", "", length)
Range("B2:B" & lRow).ClearContents
End Sub
您是指給定單元格中的最後一行(如代碼所示) - 而不是任何行中的最後一列。對? – JensS