View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
rbennu rbennu is offline
external usenet poster
 
Posts: 2
Default Passing a string to a function instead of a cell reference

Much Thanks!

"Joe User" wrote:

"rbennu" wrote:
How do i get it to use =EmpName(John)?


=EmpName("John")

just you use strings in any Excel formula.


----- original messages -----



"rbennu" wrote:
Currently using excel2003 with the following UDF

Function EmpName(nam3 As String)
Select Case nam3
Case "John"
EmpName = "First"
Case "Doe"
EmpName = "Last"
End Select
End Function

This works if I use a cell reference i.e. A1=John, =EmpName(A1) but fails if
I use =EmpName(John). I can get both forms to work if I am passing a number
and evalualting the case as a number. How do i get it to use =EmpName(John)?

Thank you in advance