Excuse me, I have some problems using .xls files on LibreOffice Calc. I tried opening the file and it worked but when I tried to save my work, it crashed. Is there any way to make it work?

It worked on Microsoft Excel on Windows 11. The file crashed the computer, but it worked passed 5 minutes and I could save my work.

    • @paf129OP
      link
      English
      91 year ago

      Yes, but it was a request of my boss

      • Scott
        link
        fedilink
        English
        181 year ago

        Tell them to use a proper database

      • meat_popsicle
        link
        fedilink
        41 year ago

        Call him special for even entertaining a 1.5GB XLS file as a real option for anything.

        That’s totally nuts. Normalize the data and use Access if you have absolutely no other options - or use SQL Server Express if you want to be cheap about it and stay in the MSFT ecosystem.

      • Brejela the Purple
        link
        fedilink
        English
        31 year ago

        Microsoft never really meant for XLS files to get that big. Can’t you use a “saner” approach, like CSV?

      • JustEnoughDucks
        link
        fedilink
        English
        11 year ago

        If it is data processing, tell them to use Octave or even better Python + spyder + pandas & matplotlib/seaborn.

        Much easier processing, much less time wasted with opening more flexible, and more beautiful plots.

  • @[email protected]
    link
    fedilink
    English
    101 year ago

    Yeah, you can make it work by finding one of your it guys and dumping it in a real database. Spreadsheet software is NOT meant to handle data like that.

  • Rob Bos
    link
    fedilink
    English
    81 year ago

    Can you split it into a few smaller files? That is honestly too large for any spreadsheet.

  • Krik
    link
    fedilink
    English
    61 year ago

    Dang! How does it take to open that file? Are there formulas and macros in there?

    As the others said, a spreadsheet isn’t a database. And you now experience why. Tell your boss it’s not going to work anymore.

  • Cora
    link
    English
    41 year ago

    Damn, a 1.5GB Excel file!? That sounds like a nightmare to work with. And here I thought a 200MB Excel file acting as a store’s entire yearly accounting ledger (where I used to work) was bad!

    At this point, you need a proper database and some reporting scripts / software. If that one file somehow gets corrupted, it’s all over.

  • @Cynosure
    link
    English
    31 year ago

    This is why exel is not a database. I’d say export to a reasonable format on Windows (like CSV, but even that might be too much) and then do the work on

  • @[email protected]
    link
    fedilink
    English
    31 year ago

    For real, what are you using this one for? If I take the compression ratio into account (times 10), subtract meta data (minus a third) and consider the character encoding (two bytes per character) I still get around 5000000000 characters. That’s all numbers? You wouldn’t store binary content in there, would you?

    Anyway, take a decent pc with at least twice the memory the file will need uncompressed. Kill all other applications. Open up your file and split it up. Make a separate file for each worksheet. If there are more than 100000 rows, split them in separate files too. Don’t embed any binary content.

    And for god’s sake: use a different tool. That very much depends on what you are trying to do. What is it?

    • @paf129OP
      link
      English
      31 year ago

      It is just numbers, but my boss wants it in excel because he can’t work another file :(

  • @grepe
    link
    English
    1
    edit-2
    1 year ago

    Excuse me, I have a problem transporting this concrete bridge segment on my VW beatle. It worked fine with my Honda Accord (just made it a bit slow) but the beatle just gets crushed under it. Anyone can tell me how to make it work?

    Edit: car type to make more appropriate comparison

  • Gabriel Martini
    link
    English
    11 year ago

    Hi! Try to open it with Apache Spark (difficult to learn at the beginning) or Pandas in Python (more friendly option). Use batch reading and dump the information in a Database (PostgreSQL) or a plain text format file (csv).