我是VBA的新手,我知道刪除線是一種文本格式,我相信它不能在空白單元格中使用。插入文本到同一行,但多列Excel VBA
是否有一個更有效的方法來插入「 - 」到同一行,但從「D」到「G」多列?
請看看我的編碼:
Set Insert = Sheets("Cash").Cells(CashRowName, "D")
Insert.Value = "-"
Set Insert = Sheets("Cash").Cells(CashRowName, "E")
Insert.Value = "-"
Set Insert = Sheets("Cash").Cells(CashRowName, "F")
Insert.Value = "-"
Set Insert = Sheets("Cash").Cells(CashRowName, "G")
Insert.Value = "-"
據我所知,Excel中允許刪除線的文本,但我需要一個空白單元格,除非我寫的東西給它,這是不可能的刪除。 – stupidgal
謝謝!那個鏈接也是我之前讀過的!:D – stupidgal