User Defined Function

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!!
 
T

Tim Williams

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

Tim
 
G

GS

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'!
 
C

cubbybear3

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
 
G

GS

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!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top