View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Christian[_8_] Christian[_8_] is offline
external usenet poster
 
Posts: 17
Default Calling a sub method


richcoleuk wrote:
Hi,

I have the name of my sub method stored in a variable:

mySubMethodName = "do_something"

I then want to call this method using the variable, I have tried
the following but it doesn't work:

Call mySubMethodName

Is there anyway to do what I am trying to do?


--
richcoleuk
------------------------------------------------------------------------
richcoleuk's Profile: http://www.excelforum.com/member.php...o&userid=33103
View this thread: http://www.excelforum.com/showthread...hreadid=549375



Why don't you just use

Call do_something

Christian