Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hello NG,
Can someone please help me with a dynamic last cell problem? Everyday I have a list of distributors that I have to send pricing info to, nationwide we have over 35,000 account. However, if I sort my list by state it come out different everyday. When I finish sending then pricing info I have to fill in a column with my name This column id always D and always starts at D2, D1 is "Contacted By" I've tried using the macro recorder and it wants to put in actual cell address, but that change every time. Sub LastCell() Dim FirstCell As Variant Dim LastCell As Variant Range("A2").Select FirstCell = ActiveCell.Offset(0, 3).Address Selection.End(xlDown).Select LastCell = ActiveCell.Offset(0, 3).Address ActiveWorkbook.Names.Add Name:="MyRange", RefersToR1C1:= _ "=ohio.xls!" & FirstCell & ":" & LastCell ' Problem is here End Sub What I would like to do is fill in column D, from cell "D2" to the last cell in column with my name - James Can anyone please help me? TIA James |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Dynamic pivot table linked to dynamic excel spreadsheets | Excel Worksheet Functions | |||
Excel 2007 BUG UsedRange/LastCell differences with Excel2003. | Excel Discussion (Misc queries) | |||
Help with copying dynamic column selected based on remote cell value and dynamic formula fill | Charts and Charting in Excel | |||
Dynamic Range with unused formula messing up x axis on dynamic graph | Charts and Charting in Excel | |||
LastCell Function | Excel Programming |