Sorry for the delay, Jason. On Mon, Feb 28, 2011 at 12:05 AM, Jason Cipriani <[email protected]>wrote:
> Using Java, working with cell feeds, couple of questions: > > 1. If I have a spreadsheet with X columns and Y rows, am I guaranteed to > have exactly X*Y CellEntries in the returned feed, and will those be in > order from left to right, top to bottom in the spreadsheet? > No, you will only get cell entries back for cells that are not empty. > > 2. If I have a CellFeed with all of the spreadsheet's data in it, and I > want to examine the contents of the cell at a specific row,column, how do I > do that? I can't find any way to ask for a cell by location, only to iterate > through all cells and test to see if the location is the one I'm looking > for... > Use the range parameter in your URL: http://code.google.com/apis/spreadsheets/data/3.0/reference.html#CellParameters Thanks, Vic
