u235sentinel,
Everyone told me I could not sort by the values

Since this is your first write-up on this site, I will assume you mean everyone somewhere else told you this. I believe this may have been a misunderstanding by you, them or likely both. You can get the keys of the hash returned to you in sorted order by any abitrary sorting method you want. The hash itself is still stored internally in its own order. This means you have to repeat the sort routine each time you want to view the hash sorted. There are modules that do the sorting for you under the covers given the appearance of a sorted hash.

I was able to sort / print the values in order

I hope you did not use the code you are showing here. You are using cmp when you should be using <=>. The difference is textual comparison versus numerical. Do you really want 2 coming after 10?

Welcome to the Monastery! - L~R

In reply to Re: Re: How to sort HASH? by Limbic~Region
in thread How to sort HASH? by iwanthome

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.