我的Excel-VBA函数只发送值False

roejwanj  于 2022-12-14  发布在  其他
关注(0)|答案(1)|浏览(103)

我已经创建了这个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单元格中。如果我打开助手,我可以看到正确的值:

有人能告诉我我的错误在哪里吗?
先谢了

相关问题