Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
ActiveWorkbook.Names.Add Name:="Members", RefersToR1C1:="=Lists!R3C5:R12C5"
I have this in "Workbook_Open". But How do I expand the area if new members are added |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I would take a different approach
With Worksheets("Lists") LastRow = .Cells(Rows.Count,"C").End(xlup).row Range("C3:C" & LastRow).Name = "Members" End With -- HTH Bob Phillips (remove nothere from the email address if mailing direct) "Kjeldc" wrote in message ... ActiveWorkbook.Names.Add Name:="Members", RefersToR1C1:="=Lists!R3C5:R12C5" I have this in "Workbook_Open". But How do I expand the area if new members are added |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Excel-- lent :-)
"Bob Phillips" skrev: I would take a different approach With Worksheets("Lists") LastRow = .Cells(Rows.Count,"C").End(xlup).row Range("C3:C" & LastRow).Name = "Members" End With -- HTH Bob Phillips (remove nothere from the email address if mailing direct) "Kjeldc" wrote in message ... ActiveWorkbook.Names.Add Name:="Members", RefersToR1C1:="=Lists!R3C5:R12C5" I have this in "Workbook_Open". But How do I expand the area if new members are added |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I enter formula sum(range+range)*0.15 sumif(range=3) | Excel Discussion (Misc queries) | |||
Excel Addin:Setting the range to the Excel.Range object range prop | Excel Worksheet Functions | |||
Range Question / error 1004: method Range of object Worksheet has failed | Excel Programming | |||
Range.Find returns cell outside of range when range set to single cell | Excel Programming | |||
how to? set my range= my UDF argument (range vs. value in range) [advanced?] | Excel Programming |