在使用Selection.Cells所选单元格输入值

问题描述 投票:0回答:1

我选择3个分离的细胞,例如A1,F6和G13,然后运行该代码:

Selection.Cells(1) = 3
Selection.Cells(2) = 4
Selection.Cells(3) = 6

我期望3个选择的细胞将被填充,代替A1,A2和A3被填充。

为什么?我怎么能填补我选择的3个小区?

excel vba range cell selection
1个回答
1
投票

如果你真的需要做到这一点,那么我还是建议从移动,但Selection您提供需求只是一个小的调整工作的代码走:

Selection.Cells.Areas(1) = 3
Selection.Cells.Areas(2) = 4
Selection.Cells.Areas(3) = 6
© www.soinside.com 2019 - 2024. All rights reserved.