I'm trying to use a named range or formula to get a specific range of data from one sheet to load into another. We have a data sheet that has data loaded to it everyday, so the row data is always changing. This sheet has a bunch of columns and rows, but I'm simply trying to get one column and all its rows right now.
The following formula I've been trying to use on my main sheet that is referencing our "Data" sheet, but all it does is return the value 0.
=OFFSET(Data!$C$2,0,0,COUNT((Data!$C:$C)))
The following is small clip of our Data sheet:
CT Date CO CH
AVG 2/5/2012 10 0
AAT 2/5/2012 1 0
A_CE 2/5/2012 3 0
2/6/2012 10 0
2/7/2012 1 0
2/6/2012 1 0
2/6/2012 10 0
2/7/2012 9 0
Column C here is "CO" and by the formula above I'm trying to say Start at row 2, which should be value 10 and take all the rows of data in just this column. Not sure if this is right or I'm doing it right, but I only get the value 0 back.
Can someone tell me how to go about doing this, so that our main sheet auto updates when our Data sheet changes and how to get these values of to the main sheet?
Bookmarks