Summarize Function Does not work in Macro??

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

Summarize Function Does not work in Macro??

JoelSchwartz
I am trying to just summarize results that I have entered into a results table as part of a macro.  In the macro I take the results and use the setResults() function to enter the information into a Results table.  I can use the run("Distribution...", " parmeter= ") without a problem.  When I try to use run("Summarize"); (see below) I don't get any summarized results in the Results Window.  When I either execute manually or use the "evaluate line" option for a macro, I get the expected results.  Any ideas why run("Summarize") would uniquely not work in a macro?

Macro Text:

run("Distribution...", "parameter=Colocalized automatic");
run("Summarize");
updateResults();

Thanks Joel