Link to home
Start Free TrialLog in
Avatar of veematics
veematics

asked on

Microsoft Excel : Named Range

Hello,
i want to select rows of specific column with custom row as the start range.

My Named Range so far is :
=Category!$E:$E

but i want exclude the first row, i tried =Category!E2:$E but doesn't work ?
Also, in some sheet i want to select the data that starts from row 10 (till the end of row in a column) ?

Thanks
ASKER CERTIFIED SOLUTION
Avatar of Rory Archibald
Rory Archibald
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Keep your named range as is (i.e. $E:$E) and try using the following formula for custom ranges.
Assuming that TEST is the name of you range,
For the list of data that starts from row 10
=OFFSET(TEST,9,0,COUNT(TEST)-9,1)

Open in new window


For the list of data that starts from row 2
=OFFSET(TEST,1,0,COUNT(TEST)-1,1)

Open in new window

Avatar of veematics
veematics

ASKER

Thanks for the help