gpt4 book ai didi

excel - 如何选择列范围中的最后一个单元格?

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

我正在尝试选择一个范围的最终值并将该值放入单元格 Q4 中。范围是动态的,从第四行开始。

这是我的代码:

Sub test()
Dim PSpark As Worksheet
Dim lc As Long

Set PSpark = Worksheets("ws1")
lc = PSpark.Cells(4, Columns.Count).End(xlToLeft).Column

With PSpark
.Range("Q4") = lc.Value
End With
End Sub

任何帮助将不胜感激。

最佳答案

非常接近,我想你想要这个:

因此,我们使用您找到的列号,然后在最后一列中选择第 4 行的值。我们将值复制到单元格 Q4。 Cells(row, column)

Sub test()

Dim PSpark As Worksheet
Dim lc As Long

Set PSpark = Worksheets("ws1")
lc = PSpark.Cells(4, Columns.Count).End(xlToLeft).Column 'Gives us the last column number. If the value is in Column C, then we get lc = 3.

With PSpark

.Range("Q4") = .Cells(4, lc).Value 'Which row from column lc (which is the last column) we want to copy from

End With


End Sub

关于excel - 如何选择列范围中的最后一个单元格?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53123773/

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