Slashdot Mirror


Jon Udell on the Nerd's Spreadsheet

rcs1000 writes "Jon Udell has a interesting article on a new type of spreadsheet: one targeted specifically at techies. The skinny is that any spreadsheet is actually a computer program, only in Resolver One, the product profiled in Udell's piece, this is explicit rather than implicit. And the code is IronPython rather than VBA. There are some other cool things it does — allowing cells to contain objects, and allowing spreadsheets to back-end websites." Udell's screencast gives a good demo, though the presenters are a bit hard to hear due to the phone connection. Resolver's own screencast is an alternative.

4 of 168 comments (clear)

  1. Why should I use this rather than SQL? by quanticle · · Score: 3, Insightful

    SQL databases have become much lighter and more efficient these days. Why should I use this store data over a lightweight SQL database?

    --
    We all know what to do, but we don't know how to get re-elected once we have done it
    1. Re:Why should I use this rather than SQL? by garcia · · Score: 3, Insightful

      Why use a database or spreadsheet? Why not something like the R Project?

      Because you have to learn yet another cryptic set of functions to do what is easily accomplished in Excel (or any other spreadsheet)? Most people couldn't give a fuck less about using any package to its full potential and most people utilize Excel as a database rather than a spreadsheet (almost everyone in my wife's company for example).

      A spreadsheet will do just fine for the majority of people and the rest would probably use something like Crystal Reports to do anything more advanced. Why? Because there is professional documentation and training available for those packages and R Project requires posts to mailing lists or forums to get answers outside of your own self research on the web. From what I can see in my own personal experience, people working in the real world don't want to spend the time searching around the Internet through mailing list posts and forums for their answers. They want to plunk down $350 and sit through a 6 hour seminar offering them 1 CEU.

      YMMV.

  2. The old saying is true. by LWATCDR · · Score: 3, Insightful

    Everything looks like a nail when all you have is a hammer.
    Spreadsheets are so useful today that they can do many tasks that are better done with other tools... If you know the other tools.

    --
    See my blog http://ilovecookes.blogspot.com/ for light hearted technical information.
  3. VBA already does this... by gillbates · · Score: 3, Insightful

    And does it poorly. And insecurely.

    You can already access spreadsheet content from Visual Basic, and include VB script in spreadsheets. The same scripting ability which allows the "wow" features in spreadsheets also creates the potential for abuse - remember macro viruses? Suddenly, documents which formerly contained only data now contained executable code, and it gave rise to a security nightmare.

    Yes, today, with VBA, you can do what the article mentions. In fact, it's been possible for years. Problem is that:

    1. Very few people use it, and
    2. Those who do use it tend to use it poorly.
    Yes, you can back end a website with your spreadsheet. But why would you? A spreadsheet is a horrible way to manage data; there's no referential integrity checks, no versioning, no security, and doesn't scale well. Furthermore, your crucial data is tied to a particular application, rather than a database.

    Just like VBA, it's a nice nerd's toy, but the wise system programmer recognizes that it has limitations.

    --
    The society for a thought-free internet welcomes you.