User Defined Function

  • Thread starter Thread starter Yugi Gokavarapu
  • Start date Start date
Y

Yugi Gokavarapu

Hello There,

When I write User Defined Function as below and use it, it returns
the output in the function argument dialogue box, but the out put is
not shown in the cell I wanted, instead I still see FALSE. The cell
type I use is "General".

Function test(num)
Select Case num
Case Is > 0
test = "Positive"
Case Is = 0
test = "Zero"
Case Is < 0
test = "Negative"
End Select
End Function

Your help is appreciated!!
 
Try adding a catch-all "Case Else" to your Select to see if your other
cases aren't being triggered

Tim
 
Yugi Gokavarapu has brought this to us :
Hello There,

When I write User Defined Function as below and use it, it returns
the output in the function argument dialogue box, but the out put is
not shown in the cell I wanted, instead I still see FALSE. The cell
type I use is "General".

Function test(num)
Select Case num
Case Is > 0
test = "Positive"
Case Is = 0
test = "Zero"
Case Is < 0
test = "Negative"
End Select
End Function

Your help is appreciated!!

It works fine for me 'as is'!
 
It could be that a function by default returns a boolean value (True/
False).
Try changing it to return a text value: Function Test(num) as String
-pb
 
Yugi Gokavarapu explained on 1/24/2012 :
I wonder why it is not working, any settings need to be modified?

WHERE is the function located? It should in a standard module!
 
Back
Top