Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I have the following command:
lastrow=Cells(Rows.count, "A").End(xlup).Row I need the formula to select the second row down |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
The second row down from what?
Rick "Megadrone" wrote in message ... I have the following command: lastrow=Cells(Rows.count, "A").End(xlup).Row I need the formula to select the second row down |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I'm sorry,
The second row down from the top of the spreadsheet (row 1) "Rick Rothstein (MVP - VB)" wrote: The second row down from what? Rick "Megadrone" wrote in message ... I have the following command: lastrow=Cells(Rows.count, "A").End(xlup).Row I need the formula to select the second row down |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Here is the info.
Market = Application.InputBox("Enter your market Example: test") lastrow = Cells(Rows.Count, "A").End(xlUp).Row Firstrow = Cells(Rows.Count, "A").Top(xlDown).Row Selection.AutoFilter Field:=5, Criteria1:="Market" Range(("D1" & Firstrow), ("D1" & lastrow)).Select Range(("D1" & Firstrow), ("D1" & lastrow)).Activate Charts.Add ActiveChart.ChartType = xlAreaStacked ActiveChart.SetSourceData Source:=Sheets("3rd Quarter Daily (07)").Range(( _ "D1" & Firstrow), ("D1" & lastrow)), PlotBy:=xlColumns ActiveChart.Location Whe=xlLocationAsObject, Name:= _ "3rd Quarter Daily (07)" "Rick Rothstein (MVP - VB)" wrote: The second row down from what? Rick "Megadrone" wrote in message ... I have the following command: lastrow=Cells(Rows.count, "A").End(xlup).Row I need the formula to select the second row down |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
hi
add an offset.... lastrow = Cells(Rows.Count, "A").End(xlUp).Offset(1, 0).Row regards FSt1 "Megadrone" wrote: I have the following command: lastrow=Cells(Rows.count, "A").End(xlup).Row I need the formula to select the second row down |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
change "true" and "false" to "availble" and "out of stock" | Excel Worksheet Functions | |||
HELP on "left","right","find","len","substitute" functions | Excel Discussion (Misc queries) | |||
Count occurences of "1"/"0" (or"TRUE"/"FALSE") in a row w. conditions in the next | New Users to Excel | |||
conditional formula to show "open" or "closed" | Excel Worksheet Functions | |||
Insert "-" in text "1234567890" to have a output like this"123-456-7890" | Excel Discussion (Misc queries) |