Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by kamielslets

  1. kamielslets

    Sorting rows per column - question on FAQ219-6545

    Thanks. I found this also to work: my $n = 1; my $unit = 'f|p|n|u|m|K|M|G'; my %phys_unit = ( 'f' => 1e-15, 'p' => 1e-12, 'n' => 1e-09, 'u' => 1e-06, 'm' => 1e-03, 'K' => 1e+03, 'M' => 1e+06, 'G' => 1e+09 ); my @sorted =...
  2. kamielslets

    Sorting rows per column - question on FAQ219-6545

    Thanks everyone. I indeed found that using the script as it is now, it sees 500K as just 500, and sorts all numbers with a similar postfix together. The same for micron, milli or whatever. It's already something... But no clues for converting 500K to 500e3 ?
  3. kamielslets

    Sorting rows per column - question on FAQ219-6545

    Hello, I'm looking for a variant of the solution in faq219-6545 "How do i sort columns/fields of mixed data?". I my specific case i only need to sort one (of multiple) columns and take in the column number as a command line argument, such that i can choose which one to sort. Now, most columns...

Part and Inventory Search

Back
Top