Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi
How to program/name so that data growing along with other sheet. For example the "date" column with grow with "date" column at other worksheet? Thanks Daniel |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Let's say the date column is in Column A.
Dim myRange as range Dim lRow as long Dim aWS as worksheet set aWS = activesheet 'Change as needed set myrange = aws.range("A1") 'Change as needed lRow = aws.cells(aws.rows.count, myrange.column).end(xlup).row set myRange = myrange.resize(lrow - myrange.row + 1, 0) -- HTH, Barb Reinhardt "Daniel" wrote: Hi How to program/name so that data growing along with other sheet. For example the "date" column with grow with "date" column at other worksheet? Thanks Daniel |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
File size growing growing exponentially | Excel Discussion (Misc queries) | |||
Growing/Shrinking/Selective Chart Data | Charts and Charting in Excel | |||
use dynamic data source to make pivot table | Excel Discussion (Misc queries) | |||
Can you make a chart's data *always* refer to a dynamic range name? | Charts and Charting in Excel | |||
Can you filter sheet of data & on another sheet make four groups under each other? | Excel Programming |