gpt4 book ai didi

excel - 列表框 ListFillRange

转载 作者:行者123 更新时间:2023-12-04 20:06:49 24 4
gpt4 key购买 nike

我在工作表上插入了一个表单控件列表框。由于某种原因,这会出错。

Sheet1.Shapes("ListBox1").ListFillRange = "A1:A10"

我想用范围填充列表框,但出现运行时错误“438”,对象不支持此属性或方法。我在这里想念什么?

最佳答案

如果是表单列表框,使用这个:

Worksheets("Sheet1").Shapes("ListBox1").ControlFormat.ListFillRange = "A1:A10"

或与 Range目的:
With Worksheets("Sheet1")
.Shapes("ListBox1").ControlFormat.List = .Range("A1:A10").Value
End With

关于excel - 列表框 ListFillRange,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22760758/

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