由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Windows版 - what's wrong with this call mod function in vba?
相关主题
RADEON 9800 Pro的显卡,怎么控制电影放到tv上去excel VBA: create dir, move files under that dir.
Re: Q: VBA in Excelhow to use global variable in excel VBA
Re: 一个关于excel的问题。请教:如何找到或者删除excel中隐藏的表?
Excel 的问题excel: can not find under specified dir.
EXcel VBA helpInterfacing Microsoft Excel VBA with FORTRAN
what is wrong with my IE?vba in excel: calculate Mode
excel VBA string process question[合集] Access help
如何用excel VBA求解median?word里面insert进去的大量图片可以同时调整明暗度(brightness)吗?
相关话题的讨论汇总
话题: mod话题: vba话题: function话题: wrong话题: call
进入Windows版参与讨论
1 (共1页)
m******u
发帖数: 12400
1
m = Application.WorksheetFunction.Mod(i, 2),
A*****a
发帖数: 52743
2
mod不是function

【在 m******u 的大作中提到】
: m = Application.WorksheetFunction.Mod(i, 2),
m******u
发帖数: 12400
3
但在excel sheet spread上,如果在cell内输入“=MOD(3, 2)”,excel会在相应cell
里填入“1”。这个用法表明它是个function。
诚如你说说的,在VBA里,改成 m = i Mod 2, 就work了。
其中两者肯定有些不同有什么原因。
谢谢你。
A*****a
发帖数: 52743
4
因为mod()是个operator, 不是方可深,m = i Mod 2相当于 m = i + 2

cell

【在 m******u 的大作中提到】
: 但在excel sheet spread上,如果在cell内输入“=MOD(3, 2)”,excel会在相应cell
: 里填入“1”。这个用法表明它是个function。
: 诚如你说说的,在VBA里,改成 m = i Mod 2, 就work了。
: 其中两者肯定有些不同有什么原因。
: 谢谢你。

1 (共1页)
进入Windows版参与讨论
相关主题
word里面insert进去的大量图片可以同时调整明暗度(brightness)吗?EXcel VBA help
word VBA question (转载)what is wrong with my IE?
save a VBA macro in excel using vbscriptexcel VBA string process question
excel VBA: detect empty record如何用excel VBA求解median?
RADEON 9800 Pro的显卡,怎么控制电影放到tv上去excel VBA: create dir, move files under that dir.
Re: Q: VBA in Excelhow to use global variable in excel VBA
Re: 一个关于excel的问题。请教:如何找到或者删除excel中隐藏的表?
Excel 的问题excel: can not find under specified dir.
相关话题的讨论汇总
话题: mod话题: vba话题: function话题: wrong话题: call