VB.NET相当于excel的商函数
VB.NET 是否有像 Excel 中那样获取商的函数?
Quotient(12, 6)
Does VB.NET have a function to get the quotient like you can in excel.
Quotient(12, 6)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
不管我在评论中写了什么,对于它们来说,整数除法都是使用相同的运算符执行的,即
\
(请注意,它不是常规斜杠,而是 back削减)。(请注意,此处的返回类型适用于整数操作数,但它与操作数的类型不同)
有关这些运算符的 VB.NET 版本的详细信息,请参阅:
Despite what I wrote in the comment, for both of them the integer division is performed with the same operator, i.e.
\
(notice that it's not a regular slash, but a backslash).(notice that the return type here is for Integer operands, but it varies from the operands' type)
For more information on the VB.NET version of these operators see:
在没有等效 VBA 的情况下,您始终可以使用
WorksheetFunction
,例如:In a case when there is no VBA equivalent, you can always use
WorksheetFunction
, for example: