Hey David,

Yep, you can.  You can use named ranges in the API, but you can't create or
edit existing named ranges.

Just create the named range in the UI, and then do something like a PUT to
the cells feed:

PUT https://spreadsheets.google.com/feeds/cells/
<key>/<worksheet-id>/private/full/R5C5
<entry xmlns="http://www.w3.org/2005/Atom";
    xmlns:gs="http://schemas.google.com/spreadsheets/2006";>
  <gs:cell row="5" col="5" inputValue="=SUM(victest)"/>
</entry>

Notice my named range is victest

Thanks,
-Vic



On Wed, Jan 12, 2011 at 2:07 PM, David Miller <
[email protected]> wrote:

> Is it possible to access a Named Range through the Spreadsheet API?  If so,
> is there sample code?
>
> I have not be able to find any documentation on this subject.
>

Reply via email to