作者oh751029 (阿宅)
看板Visual_Basic
标题[VBA ] constant想用储存格参照
时间Thu Jan 22 16:27:37 2015
这是我原本的coding
Constant path=10000
Constant step=24
Dim S(path,step) as double
我现在想要让path,step这两个原本是constant的常数
变更成可以参照储存格的样式
像下面的
Path=worksheets(1).cells(11,3).value
Step=worksheets(1).cells(11,4).value
有何方法可以改写,谢谢
--
※ 发信站: 批踢踢实业坊(ptt.cc), 来自: 101.14.61.168
※ 文章网址: https://webptt.com/cn.aspx?n=bbs/Visual_Basic/M.1421915259.A.459.html
1F:→ MOONRAKER: 阿不就你写的这样 01/22 16:49
2F:→ oh751029: 放进去後,它说括弧内必须是个constant,所以才问看看 01/22 16:54
3F:→ MOONRAKER: Constant当然不能以可执行的叙述指定 01/23 01:41
4F:→ MOONRAKER: 所以简单的方法就是别用constant了 01/23 01:42
5F:→ MOONRAKER: 反正可以在module内任意地方取到 意义一样 01/23 01:43