Programming excel function

  • Thread starter Thread starter Stas
  • Start date Start date
S

Stas

Hello all!
I need extract all parameters from my function.
How I must do it?
For example I have function
function myfunc(byref a, b as double) as double
...
end function

sub fillcell
ActiveCell.FormulaR1C1 = "=myfunc(10,100)"
end sub

When I start sub "extract" I must extract (a and b parameter from function
of Activecell)
sub extract()
...
xA=a
xB=b
end sub
Thanks.
Stas.
 
Back
Top