三,你是想在工作頁用這個function? 把這段放在module上就可
Public Function myDate(n As Variant) As Long
Application.Volatile
myDate = Range("A2").Value * n
End Function作者: basarasy 時間: 2010-7-22 21:53
Function BSS(n As Integer) As Long
不是lnteger作者: basarasy 時間: 2010-7-23 19:31
回復 6#Hsieh
Function myDate(n As Integer) As Long
Application.Volatile
myDate = Range("A2").Value * n
End Function
這個我是看書的.
為什麼不可以用Integer??作者: Hsieh 時間: 2010-7-23 19:38