L
Luc
What i want to do is the following :
I have a cell which i have named "ExtraRisk".
This cell contains text : example "Electricity", which is also the name of
a range.
Now i want to select this named range "Electricity" & copy the range
How do i do this.
What i have so far is :
Sub Risicos_toevoegen()
.....
Sheets("MASTER").Select
'I'm stuck here....
Application.Goto Reference:="ExtraRisk" 'I do not want to copy the named
range "ExtraRisk", but i want to copy the named range where the value of the
cell "ExtraRisk" refers to (this value is the name of a named range)
.....
Selection.Copy
.....
End Sub
I have a cell which i have named "ExtraRisk".
This cell contains text : example "Electricity", which is also the name of
a range.
Now i want to select this named range "Electricity" & copy the range
How do i do this.
What i have so far is :
Sub Risicos_toevoegen()
.....
Sheets("MASTER").Select
'I'm stuck here....
Application.Goto Reference:="ExtraRisk" 'I do not want to copy the named
range "ExtraRisk", but i want to copy the named range where the value of the
cell "ExtraRisk" refers to (this value is the name of a named range)
.....
Selection.Copy
.....
End Sub