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 7718517
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T03:11:09+00:00 2026-06-01T03:11:09+00:00

I Have an Excel 2003 file with a line similar to this: I need

  • 0

I Have an Excel 2003 file with a line similar to this:

enter image description here

I need to click “the button” and it adds that line as the last one on a Google Spreadsheet

Similar to:

enter image description here

Is it possible?

Should I use the command-line Google tools?

Is there a better way? Easier way?

How would you do it?

(once I know how to add “stuff” from VBA to Google Docs, how the f do i add it to the last line?)

More info: I have an Excel 2003 “program” that saves all of the company’s sales (with the customer info), and I’d like do make a global address book that’s easily updated by my (non it) co-workers.

  • 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-01T03:11:11+00:00Added an answer on June 1, 2026 at 3:11 am

    You don’t need OAuth or the spreadsheet API. Google Spreadsheet allows data entry with a simple form, which means also that a HTTP POST will do the trick. You just need to prepare your spreadsheet to accept data entries via a form as follows:

    • Login to your Google Docs account
    • Create a spreadsheet or open an existing one
    • Click on Tools / Create a form
    • Add anything in the form description just to enable the Save button
    • Save the form
    • Copy the formkey value displayed in the link at the bottom of the form creation page
    • Now you can issue a simple post into the spreadsheet without OAuth

    You can test the entry now with curl if you have it on your system (replace the formkey placeholder with the formkey from your table):

    curl.exe -v -k "http://spreadsheets.google.com/formResponse?formkey=<formkey>" -d "entry.0.single=test&entry.1.single=test2&pageNumber=0&backupCache=&submit=Submit"
    

    Next we try to execute the form POST from our Excel sheet via the following code. Add a reference to “Microsoft XML, v3.0” before. Replace column1 with your desired values.

    Dim httpRequest as XMLHTTP
    Set httpRequest = New XMLHTTP
    httpRequest.Open "POST", "http://spreadsheets.google.com/formResponse?formkey=<formkey>&amp;ifq", False
    httpRequest.setRequestHeader "Content-Type", "application/x-www-form-urlencoded"
    httpRequest.Send "entry.0.single=" + column1 + "&entry.1.single=" + column2 + "&pageNumber=0&backupCache&submit=Submit"
    
    'Check result in the following vars
    httpRequest.status
    httpRequest.statusText
    

    Hope that helps

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

Sidebar

Related Questions

i have a one 2003 excel file. using ofc.exe file i have converted the
I have created an Excel 2003 add-in that uses the CLR 2.0 and this
I have an excel 2003 vsto workbook that I would like to make available
Excel 2003 Question: I'd like to have one cell represent a range of cells.
I have a VB6 application running for years. This application always reference Excel 2003
I have an excel template that uses a macro to save the file, so
I need to connect to an open Excel 2003 file using .NET 3.5 It
I have an ASP.Net MVC site that generates a Microsoft Excel 2003 XML formatted
I have got an Excel file in this form : Column 1 Column 2
I have an Excel file that calls a .net DLL (called MyDLL) in the

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.