gpt4 book ai didi

excel - 清除列和行

转载 作者:行者123 更新时间:2023-12-02 15:35:36 25 4
gpt4 key购买 nike

需要vba代码来清除从A到J的列和从21到200的行。下面的代码是清除列直到最后,需要删除到J列

Function ClearSummary()


Const TestName_Col = "B"
Const FirstRow_Num = "21"

MaxRowNumber = Range(TestName_Col & "200").End(xlUp).Row

If (MaxRowNumber > FirstRow_Num) Then
'select all rows in range & clear
CellReference = FirstRow_Num & ":" & MaxRowNumber
Rows(CellReference).Select
Selection.ClearContents
Selection.Hyperlinks.Delete
Selection.Font.Underline = xlUnderlineStyleNone
Selection.Font.ColorIndex = 0
End If
End Function

最佳答案

这应该可以解决问题!

Range("A21:J200").Clear

感谢克里斯教我一种新方法!

关于excel - 清除列和行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13046484/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com