vote up 0 vote down star
1

I've never used spreadsheets for anything more than a quick graph. I'd like to learn how to use spreadsheets to their full extent and have been playing around on Google Spreadsheets.

There do not seem to be any thorough tutorials on Google Spreadsheets and even Google's documentation often makes references to Excel functionality without explaining it.

My question is, should I first learn to use spreadsheets on Excel and then move to Google spreadsheets? I'm not doing anything extraordinarily complicated, but I'd like to have a clearer understanding of this "spreadsheet programming" if I may express myself so.

flag
This is not programming related aside from a vague reference to "spreadsheet programming" – TheTXI Feb 26 at 19:51
The end goal may be to create macro and custom functions for Excel, which is programming. – Vladimir Dyuzhev Feb 26 at 19:52
Actually he expressly says that his ultimate goal is to use google. – EBGreen Feb 26 at 19:56
is there any programability in Google spreadsheets? – Javier Feb 26 at 19:58
Google spreadsheets do support a fair number of formulas, but I don't believe supports macros in anywhere near the same fashion that excel does. – EBGreen Feb 26 at 19:59
show 1 more comment

4 Answers

vote up 1 vote down check

Excel spreadsheets have a programming language (Excel VBA, see Joel Spolsky) which is not in Google spreadsheets, so starting with Excel is probably not the path of joy.

You could start with some spreadsheet exercises, such as

  1. Implement a bowling score chart using relative cell references
  2. Implement a bowling score chart using ARRAYFORMULA
  3. Implement a bowling league report where every team uses their own spreadsheet and your report imports all the data.
  4. etc.

That would give you a feel for one of the problem domains for which Google spreadsheets are the right size and the right place: available-anywhere collaborative recording and summary.

link|flag
vote up 0 vote down

Google is free, but very limited. Excel is powerful and fast (being a native desktop application), but expensive.

You should consider to download OpenOffice, which is free and fast.

link|flag
vote up 0 vote down

Agreed - Open Office would be the way to go - there's a good tutorial here.

And being Java based, it runs on a number of platforms.

link|flag
If you are not giving a separate distinct answer and are instead essentially adding content to another answer, you should do this as a comment. You could even edit the other answer and add the link to it. – EBGreen Feb 26 at 20:03
contrary to popular belief, OOo isn't 'java based' – Javier Feb 27 at 3:27
vote up 2 vote down

AFAICT, Google spreadsheets aren't programmable. both excel and OOo are, so if you want to learn about "spreadsheet programming", you'll get nowhere with Google.

OOo, in particular is programmable in Python, so it's a more structured platform for development. VBA OTOH is a very evolutioned BASIC, but still a big pain to do it right. (witness any excel accounting system slowly creeping towards unmaintanability)

personally, i'd like to do all the programming in a DB server (plus some scripting language), and use the spreadsheet as frontend (instead of a browser); but it seems that most 'integrationability' features mean just that it's easy to copy output from the DB to the spreadsheet, and sometimes back to the DB, none i've seen makes it 'live' data.

link|flag
Thanks for the correction. I'll look into OOo and python for future development of this kind. I was thinking of learning how to use Google Docs in particular due to some of its unique features but I'll ask about that in another question. – Daniel Gill Feb 26 at 23:11

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.