Function Wizard

  • Thread starter Thread starter Madiya
  • Start date Start date
M

Madiya

I am trying to simulate the function wizard thru a macro
which will show the function wizard for a perticuler
function. So far I have
ActiveCell.FunctionWizard which shows the screen to select
the function.

How do I make the wizard to show directly next screen with
arguments for a perticuler function (say SUM)?

Regards,
Madiya
 
Possibly
ActiveCell.Formula = "=Sum(1)"
ActiveCell.FunctionWizard
 
Tom,
Thanks for your help.
It still shows the initial screen to choose a function. I want 1 step
further.
Excel should show the screen which shows the arguments for the
functions selected. However if I rerun the same macro, it shows the
right screen.
Any other suggession?

Regards,
Madiya
 

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

Back
Top