gpt4 book ai didi

vba - 应用公式,然后自动填充数据,直到列 : VBA 中的最后一个可见单元格

转载 作者:行者123 更新时间:2023-12-04 20:11:37 25 4
gpt4 key购买 nike

我使用此代码应用长度公式,然后 Autofill直到最后一个可见单元格但出现错误

Runtime Error '1004'- Method 'Range' of object_Global' failed



代码
Range("C2").Select
ActiveCell.FormulaR1C1 = "=LEN(RC[-1])"
Selection.AutoFill Destination:=Range("C2:C" & Lastrow).SpecialCells(xlCellTypeVisible).Select
Selection.Copy

最佳答案

从您的代码看来,您需要 COl B 中单元格的长度。下面的代码对我有用。

Sub x()
Range("C2:C" & Range("B" & Rows.Count).End(xlUp).Row).SpecialCells(xlCellTypeVisible).FormulaR1C1 = "=LEN(RC[-1])"
End Sub

关于vba - 应用公式,然后自动填充数据,直到列 : VBA 中的最后一个可见单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41437131/

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