我已经创建了这个Excel 2016-VBA函数:
Function myDISCOUNT(quantity As Double, price As Double) As String
Dim strText As String
If quantity > 99 Then
strText = "High"
Else
strText = "Small"
End If
myDISCOUNT = strText
End Function
无论我如何更改脚本,值“FALSE”总是出现在Excel单元格中。如果我打开助手,我可以看到正确的值:
有人能告诉我我的错误在哪里吗?
先谢了
1条答案
按热度按时间yptwkmov1#
您的代码在Excel 2010中运行良好
Function myDISCOUNT