我想創建一個簡單的功能,將在一定範圍內的每個單元格周圍添加邊框。使用精彩的錄音會產生大量無用的代碼。下面的代碼將顯示一個「表格」的數據,在這個範圍內的每個單元格周圍,我想添加一個邊框。在線我一直無法找到一個簡單或明確的答案。在一個範圍內的每個單元格周圍的邊框
所有幫助非常感謝!
Set DT = Sheets("DATA")
endRow = DT.Range("F" & Rows.Count).End(xlUp).Row
result = 3
For I = 2 To endRow
If DT.Cells(I, 6).Value = Range("B1").Value Then
Range("A" & result) = DT.Cells(I, 6).Value
Range("B" & result) = DT.Cells(I, 1).Value
Range("C" & result) = DT.Cells(I, 24).Value
Range("D" & result) = DT.Cells(I, 37).Value
Range("E" & result) = DT.Cells(I, 3).Value
Range("F" & result) = DT.Cells(I, 15).Value
Range("G" & result) = DT.Cells(I, 12).Value
Range("H" & result) = DT.Cells(I, 40).Value
Range("I" & result) = DT.Cells(I, 23).Value
result = result + 1
End If
Next I
我編輯我的頭銜視爲儘管它迷惑人。 – CustomX