recording macro

A

adambush4242

I am trying to record a macro while I use "data analysis" but the code that
it is giving me does not record the ranges that I select. How do I enter the
ranges that I am trying to select with in the data analysis?

This is the code it returns after i stop recording:

Application.Run "ATPVBAEN.XLA!Descr", , , "C", False, True, 1, 1, _
95
 
D

Dave Peterson

The order is:
inputrange,
outputrange,
grouped,
labels,
summary,
ds_large,
ds_small,
confid

I started the macro recorder and used Tools|data analysis|descriptive statistics
and selected all my ranges and got this code:

Application.Run "ATPVBAEN.XLA!Descr", ActiveSheet.Range("$A$1:$B$27"), _
ActiveSheet.Range("$I$2:$M$16"), "C", True, True, 1, 1, 95

Input range: ActiveSheet.Range("$A$1:$B$27")
Output range: ActiveSheet.Range("$I$2:$M$16")
Grouped (by columns or rows): "C"
Labels: True
Summary: True
Ds_Large: 1
Ds_Small: 1
Confidence level for mean: 95
 

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

Top