View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
Tom Ogilvy Tom Ogilvy is offline
external usenet poster
 
Posts: 27,285
Default Re-defining Ranges in VBA

Unless you have set the range definition up as a dynamic range, it wouldn't
be automatic, but since you are running code to make the changes, just add a
line similar to this.

Range("A1").CurrentRegion.Name = "MyName"

--
Regards,
Tom Ogilvy

"aehan" wrote in message
...
Can anyone help please? I have a macro which imports data, replacing data
which is already there and has been range named. When the import has
finished, the range name re-defines itself and cuts out some of the

columns
and rows that were originally there.

Is there a way in VBA that I can get therange name to automatically
re-define itself based on the new current region so that it sees all of

the
new data?

I'm new at this and I'm struggling, so any help would be really

appreciated

Thanks