nm_pavan has asked for the wisdom of the Perl Monks concerning the following question:

This node falls below the community's minimum standard of quality and will not be displayed.

Replies are listed 'Best First'.
Re: How to parse excel to hash
by SuicideJunkie (Vicar) on Sep 13, 2011 at 18:10 UTC

    If you want someone to write code for you, you need a much better specification, and some cash to pay with. If you want help debugging your code, you need to show your trimmed-down code along with the error messages, and some sample input and output.

    Some suggestions to get you started:

    Start with use strict; use warnings;, and fix any problems they identify.

    Also, use Data::Dumper; and then print Dumper $parameters; throughout your code. See what exactly is happening to your data structure at each point in the code, and you will be able to find where things start going wrong.

Re: How to parse excel to hash
by Tux (Canon) on Sep 13, 2011 at 18:56 UTC

    Don't know if it is close enough, but Spreadsheet::Read parses whole workbooks into a single hash.


    Enjoy, Have FUN! H.Merijn
Re: How to parse excel to hash
by Anonymous Monk on Sep 13, 2011 at 17:29 UTC
Re: How to parse excel to hash
by Kc12349 (Monk) on Sep 13, 2011 at 18:12 UTC

    I see that you have attempted to make your node more readable, but in the future simply edit the original instead of duplicating your question in an additional node. That being said, you need to do a little more in the way of readability and formatting if you want help on your issue.

    Show us some examples of code you have attempted to use so far and place anything that refers directly to code or data in code tags, <c>.