Dynamic Name Range With Data Analysis, Macro

Jarke

Board Regular
Joined
Aug 13, 2016
Messages
95
Hi,

My goal is to create a macro where it updates my data analysis, such as descriptive analysis, histogram, correlation etc. I've managed to record a macro to do this.

The problem is that i will update my data, add more rows to it, thus the ranges withing the data analysis (histogram..) will change automatically with my extra input. The best solution would be to put dynamic named ranges in the data analysis ranges. This does unfortunately not work for me yet.

It works to put a dynamic name range when creating the macro, but when I want to use the macro it says: "Input range missing. Please Enter." Thus my dynamic range disappears from the macro.

How should I go about this? Am I missing something?

How can I use dynamic name ranges in a macro?

I managed to get abit furher, but the dynamic name range was replaced with $M$17:$M$29

My name range name is "Test"

Could I replace the range in the code with: =Sheet1!Test

Would love any help!

- I want my macro to update my data analysis with just a click, without having to update the ranges within the analysis tools, thus using dynamic name ranges.

VBA code:
Sub Macro10()
'
' Macro10 Macro
'

'
Application.Run "ATPVBAEN.XLAM!Descr", ActiveSheet.Range("$M$17:$M$29"), _
ActiveSheet.Range("$P$19"), "C", False, True
Range("D45").Select
End Sub
Sub Macro11()
'
' Macro11 Macro
'

'
Application.Run "ATPVBAEN.XLAM!Descr", ActiveSheet.Range("$M$17:$M$29"), _
ActiveSheet.Range("$P$19"), "C", False, True
Range("E37").Select
End Sub
 

Excel Facts

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"
Have you tried
Range("Test")
instead of
ActiveSheet.Range("$M$17:$M$29")

M.
 
Upvote 0
I tried but when I use the macro it converts the name range into the current range (example c4:c20).

1. I create the macro with the name range
2. it works with the range
3. I add further data, in the rows below
4. the macro does not update the range but uses the range that was created in 1. instead


Need it to update :/
 
Upvote 0
How did you create the dynamic named range?
Show us the formula you used

M.
 
Upvote 0
hmm...your formula seems ok

Insert this code line
Msgbox Range("Test").Address
and tell us what you see

M.
 
Upvote 0
As an alternative, try

Code:
Dim MyRange As Range
With Sheets("Sheet1")
    Set MyRange = .Range("M17:M" & .Cells(.Rows.Count, "M").End(xlUp).Row)
End With
'rest of code

And use
MyRange
instead of
ActiveSheet.Range("$M$17:$M$29")

M.
 
Upvote 0
Hmm, in the data range in data analysis or in the VBA? I have never coded in VBA. Tried to replace it with some code in the VBA, without success. Any pointers on where?
It did not work in the data range in the "descriptive analysis" for example
 
Upvote 0
I understood that this worked (being Sheet1 the active sheet)

Code:
Sub Macro10()
'
' Macro10 Macro
'

'
     Application.Run "ATPVBAEN.XLAM!Descr", ActiveSheet.Range("$M$17:$M$29"), _
        ActiveSheet.Range("$P$19"), "C", False, True
    Range("D45").Select
End Sub

So, see if this works

Code:
Sub aTest()
    Dim MyRange As Range
    
    With Sheets("Sheet1")
        Set MyRange = .Range("M17:M" & .Cells(.Rows.Count, "M").End(xlUp).Row)
        Application.Run "ATPVBAEN.XLAM!Descr", MyRange, .Range("$P$19"), "C", False, True
        .Range("D45").Select
    End With
End Sub

M.
 
Last edited:
Upvote 0
Looks like it works! You are a magician mate! Thanks alot :D

Is it possible to remove the Warning after i press the macro? It says "...will overwrite existing data.... press OK to proceeed".

I won't be able to just Record my macro this way. How should I connect further aspects?

This now updates my Descriptive statistics, is that equal to "Application.Run "ATPVBAEN.XLAM!Descr"" in the formula? Could I just change that and other numbers to include a second function?
What is "D45"?

Do you know the code for other functions in Data Analysis?
 
Upvote 0

Forum statistics

Threads
1,215,106
Messages
6,123,124
Members
449,097
Latest member
mlckr

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top