Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8905027
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T02:17:14+00:00 2026-06-15T02:17:14+00:00

I’m learning how to use the Google spreadsheet API to get info from a

  • 0

I’m learning how to use the Google spreadsheet API to get info from a spreadsheet and insert info to him.

I got the basic stuff with some examples from google, but I want to do something a little more advanced.

I got 2 lists in the spreadsheet, something like this:

      A                     B    
1| WebsiteList1    |   WebsiteList2
2| www.google.com  |  www.blabla.com
3| www.yahoo.com   |  www.someWebsite.com
4| www.cnn.com     |  www.cantThinkOfAbother.com

I want to choose 1 of the list, based on columns titles (WebsiteList1 or WebsiteList2)

I’m trying to change this code to do this, but with no luck (not sure what to do):

public void GetAllWebSitesListFromWorkSheet(string spreadsheetName,string colmnTitle)
{
        WorksheetEntry entry = getWorkSheetByTitle(spreadsheetName);

        CellQuery myCellQuery = new CellQuery(entry.CellFeedLink);

        CellFeed cellFeed = service.Query(myCellQuery);

        foreach (CellEntry cell in cellFeed.Entries)
        {
            Console.WriteLine(cell.Value);
        }
    }

What do I need to change in the CellQuery object, to get all the sites under WebsiteList2 ?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T02:17:16+00:00Added an answer on June 15, 2026 at 2:17 am

    Ok, afther some time of messing around, I found a way to get only 1 colmn!
    Here is the way.

    first of all we need to use ListFeed, so we can get complete rows.
    ListFeed is a collection that represnt the rows on the spreadsheet.

    ListFeed row;
    

    row.elements is a collection that represent the cells of the row.

    so this is the way to get 1 colmn (based on the spreadsheet in the question):

    public void GetWebsitesWithListFeed()
        {
    
    
            WorksheetEntry entry = //get your spreadsheet (expmples for this can be found
                                  //in google docs api (link in the end of the answer)
    
    
            // Define the URL to request the list feed of the worksheet.
            AtomLink listFeedLink = entry.Links.FindService(GDataSpreadsheetsNameTable.ListRel, null);
    
            // Fetch the list feed of the worksheet.
            ListQuery listQuery = new ListQuery(listFeedLink.HRef.ToString());
    
            ListFeed listFeed = service.Query(listQuery);
    
            // Iterate through each row.
            foreach (ListEntry row in listFeed.Entries)
            {
                //go over each CELL in the row
                foreach (ListEntry.Custom element in row.Elements)
                {   
                    //print only the CELLS that there father (xmlName) is "WebsiteList2"
                    if (element.XmlName == "WebsiteList2")
                        Console.WriteLine(element.Value);
                }
    
            }
    
        }
    

    for info about getting the SpreadSheet and connection stuff go HERE.

    this is only 1 way i found, i would like to know if somone know about a diffrent way to get a colmn base on his header.

    (sorry for my english)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

For some reason, after submitting a string like this Jack’s Spindle from a text
I'm trying to convert HTML to plain text. I get many &\#8217; &\#8220; etc.
I'm making a simple page using Google Maps API 3. My first. One marker
I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I have just tried to save a simple *.rtf file with some websites and
I am trying to understand how to use SyndicationItem to display feed which is
I've got a string that has curly quotes in it. I'd like to replace
I want use html5's new tag to play a wav file (currently only supported
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.