gpt4 book ai didi

vba - 如果同一行中的另一个单元格为空白,则清除该行中的单元格

转载 作者:行者123 更新时间:2023-12-04 20:19:57 26 4
gpt4 key购买 nike

如果在 G 列中找到一个空单元格,此代码将删除整行。如果 G 列中的单元格为空白,我需要做的是清除 A 列中的单元格。

On Error Resume Next     ' In case there are no blanks
Columns("G:G").SpecialCells(xlCellTypeBlanks).EntireRow.Delete
ActiveSheet.UsedRange 'Resets UsedRange for Excel 97

最佳答案

尝试这个:

With Intersect(Columns("G:G"), ActiveSheet.UsedRange)
If WorksheetFunction.CountBlank(.Cells) > 0 Then
.SpecialCells(xlCellTypeBlanks).Offset(, -6).ClearContents
End If
End With

关于vba - 如果同一行中的另一个单元格为空白,则清除该行中的单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9203521/

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