我有以下功能VBA
:
Public Function lorh(custo As Integer)
If custo > 10.99 And custo <> 0 Then
lorh = "1.4"
Else
If custo < 11 And custo <> 0 Then
lorh = "1.35"
Else
If custo <= 0 Or custo < 0 Then
lorh = "Valor Inválido"
End If
End If
End If
End Function
现在我需要的是从子开始调用这个函数,或者从宏开始调用这个函数,这样我就可以将它与excel
工具栏上的自定义按钮相关联。谁能指导我?