Home |
Search |
Today's Posts |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks JE............
I went and read your reference on Chip's page and it's really unbelievable how much more RangeNames can be used than what I was capable of. I've only used them to reference cells, or groups of cells identified by their row/column locations. Of course this suggestion is the way to go in the future after I practice a bit. This time I went with Tom's code..........it was there, and worked, and I sorta understood it.......three good things in my book. Thanks again for your response.......... Vaya con Dios, Chuck, CABGx3 "JE McGimpsey" wrote in message ... You don't need programming, of course. It may be more efficient to use dynamic ranges: http://cpearson.com/excel/named.htm#Dynamic But you can use something like: Range(Cells(7, 1), Cells(Rows.Count, 1).End(xlUp)).Name = "Data1" Range(Cells(7, 2), Cells(Rows.Count, 2).End(xlUp)).Name = "Data2" Cells(7, 1).Resize(Range("Data2").Rows.Count,2).Name = "Data3" or a bit more efficiently Range(Cells(7, 1), Cells(Rows.Count, 1).End(xlUp)).Name = "Data1" With Range(Cells(7, 2), Cells(Rows.Count, 2).End(xlUp)) .Name = "Data2" Cells(7, 1).Resize(.Rows.Count,2).Name = "Data3" End With In article , CLR wrote: Hi All....... If someone would be so kind.....I am in need of a macro that will look to A7, and then depending on how many consecutively populated cells are below it, create RangeName "Data1" of that size. Then do the same thing for RangeName "Data2" starting at cell B7. Then, combine the two as RangeName "Data3" from A7 whatever becomes the bottom end cell of "Data2"........when I do this by recording, it just hard-codes the cells and does not allow if the range size changes. Assuming Data in A7:B14, then RangeName "Data1" would be assigned to A7:A14 RangeName "Data2" would be assigned to B7:B14 RangeName "Data3" would be assigned to A7:B14 TIA for any guidance..... Vaya con Dios, Chuck, CABGx3 |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Macro recorded... tabs & file names changed, macro hangs | Excel Worksheet Functions | |||
Macro Help Needed - Excel 2007 - Print Macro with Auto Sort | Excel Worksheet Functions | |||
how to count/sum by function/macro to get the number of record to do copy/paste in macro | Excel Programming | |||
macro to delete entire rows when column A is blank ...a quick macro | Excel Programming | |||
Start Macro / Stop Macro / Restart Macro | Excel Programming |