Can you name function?

  • Thread starter Thread starter checkQ
  • Start date Start date
C

checkQ

This is an odd one. I have not seen this question discussed anywhere on this
forum. Can you name a function? i.e. =Sum(A1:B2). I know that you can name
the whole formula =Sum(A1:B2) and call it "Addup" or you can just name the
range (A1:B2) and call it "Addup" but can you name the function Sum?
 
You can surely create an alias for a function:

Public Function zum(r As Range) As Variant
zum = Application.WorksheetFunction.Sum(r)
End Function

But why?
 
Hi,
Thanks for response. I just wanted to see how far I could stretch the naming
function. Neat.
 

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

Similar Threads

VLOOKUP 3
sumif??? 4
Need help with an excel formula 1
worksheet renames - specific 0
Moving range? 6
sumif 2
Formula help with having characters in the number 2
Charts. 6

Back
Top