Trouble sorting in alpha-numeric order

Can someone please help me figure out why iPhoto doesn't know how to sort things alpha-numerically by title?
For example, I am importing photos from my hard drive. Numbers go 1-200 as they should. However when I get into iphoto (set to sort by title), iphoto decides to go 1, 10, 100, 2, 20, 200, 3, 30, etc. Its very annoying since they are no longer in the right order. 1 should be next to 2, not 10. Computers have been ordering things in number order for ages, why is iPhoto so confused?
Are there different settings that will import things properly. I know if I was using albums, I could make sure the album is set to sort "manually" prior to importing. Then they will be in their original order. I can't do that when just importing into iphoto/events as far as I know.
Any suggestions?

iPhoto sorts jsut fine - soem human had mis-names the photos
"space" "space" 1 does not sort Alpha-Numerically to the same place a 001 - nor does 1 sort the same as 001
An Alpha Numeric sort considers both Alphabetic and Numeric characters and therefore if you want the sort to match your expectiations then you need to be sure the characters you are sorting on are correct - the conmputer can not read yoru mind and see that you do not really want an alpha-numeric sort after all
LN

Similar Messages

  • HT4061 How do I keep photos in alpha-numerical order when syncing them from my laptop?

    How do I keep photos in alpha-numerical order when syncing them from my laptop?

    Read this: http://support.apple.com/kb/HT4221

  • Sorting of alpha numeric characters in a column`

    Hi All,
    I have a column which has alpha numeric characters like 1A, 12B, 14D, 12CC ...etc.
    I need to sort this column in ascending as well as descending. The normal "sort by" does not work and the ASCII function return on the ascii value of the 1st character in the cell.
    Can you please help me out?

    Needed more sample data..
    For provided data, ie if Number comes only at the beginning, you can ..
    SQL> select c1
      2  from t
      3  order by to_number(translate(c1,translate(c1,'a0123456789','a'),' ')),c1;
    C1
    1A
    12B
    12CC
    14D                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Sort values in numeric order in drop down menu

    Is there anyway to sort the values in numeric order-asending for the drop down menu of a particular field.
    Any ideas?
    G

    Add a property 'SORTED' and Boolean = true in BPE.
    G

  • How to sort the alpha numeric character into number?

    Hi Good day!
    I have here a sample data as shown below that needs string manipulation to sort the metric sizes numerically.
    Select MetricSize From Sizes Order By MetricSize; which yields the following result:
    10 x 5.5 x 2
    125 x 95 x 13.5/21
    1264.01 x 1200 x 22.23
    130 x 105 x 12
    210 x 180 x 15
    28 x 16 x 15.2
    28 x 16.8 x 6/7.5
    52 x 25 x 10
    52 x 25 x 7/7.5
    52/58 x 25 x 7
    52/59 x 25 x 10/15.5
    55/61 x 35 x 11.5/16
    74.2/78.2 x 56 x 8/10.5
    74.5/79.5 x 45/42.5 x 12/13.7
    But the requirement is to sort this sizes numerically so that the output would be look like this:
    10 x 5.5 x 2
    28 x 16 x 15.2
    28 x 16.8 x 6/7.5
    52 x 25 x 7/7.5
    52/58 x 25 x 7
    52/59 x 25 x 10/15.5
    52 x 25 x 10
    55/61 x 35 x 11.5/16
    74.2/78.2 x 56 x 8/10.5
    74.5/79.5 x 45/42.5 x 12/13.7
    125 x 95 x 13.5/21
    130 x 105 x 12
    210 x 180 x 15
    1264.01 x 1200 x 22.23
    By the way the format for these sizes is composed of Outside Length x Inside Length x Thickness. But there are some sizes that contains slash '/' which is considered as special sizes.
    So one of my solution is to separate the numbers into 3 columns so that I can sort it by outside, inside length and thickness.
    Select MetricSize,
    Convert(Numeric(18, 2), Left(SubString(MetricSize, PatIndex('%[0-9.-]%', MetricSize), 100),PatIndex('%[^0-9.-]%',
    SubString(MetricSize, PatIndex('%[0-9.-]%', MetricSize), 100) + 'X')-1)) As Outside,
    Substring(MetricSize, charIndex('x', MetricSize) + 2, charIndex(reverse(Left(SubString(reverse(MetricSize),
    PatIndex('%[0-9.-]%', reverse(MetricSize)), 100),
    PatIndex('%[^0-9.-]%', SubString(reverse(MetricSize), PatIndex('%[0-9.-]%',
    reverse(MetricSize)), 100)))), MetricSize) - 4 - charIndex('x', MetricSize)) As Inside,
    Convert(Numeric(18, 2), Reverse(Left(SubString(reverse(MetricSize), PatIndex('%[0-9.-]%', reverse(MetricSize)), 100),PatIndex('%[^0-9.-]%',
    SubString(reverse(MetricSize), PatIndex('%[0-9.-]%', reverse(MetricSize)), 100) + 'X')-1))) As Thickness
    From Sizes Order By Outside , Inside, Thickness
    It is almost there but the result is not yet the exact result that I really wanted. There's a problem if the sizes contains slash '/' especially on the middle or the last portion of the character, which give me headache for a several minutes/hours. :)
    I need help for this problem. Your help will be greatly appreciated.
    Thanks in advance.
    Hardz

    create table #t (col varchar(100))
    insert into #t values ('10 x 5.5 x 2')
    insert into #t values ('125 x 95 x 13.5/21')
    insert into #t values ('1264.01 x 1200 x 22.23')
    insert into #t values ('130 x 105 x 12')
    insert into #t values ('130 x 95 x 12') --added
    insert into #t values ('210 x 180 x 15')
    insert into #t values ('28 x 16 x 15.2')
    insert into #t values ('28 x 16.8 x 6/7.5')
    insert into #t values ('52 x 25 x 10')
    insert into #t values ('52 x 25 x 7/7.5')
    insert into #t values ('52/58 x 25 x 7')
    insert into #t values ('52/59 x 25 x 10/15.5')
    insert into #t values ('55/61 x 35 x 11.5/16')
    insert into #t values ('74.2/78.2 x 56 x 8/10.5')
    insert into #t values ('74.5/79.5 x 45/42.5 x 12/13.')
    ;with mycte as (
    select col,
    parsename(Replace(replace(col,'.','*'),'X','.'),3) col1
    ,parsename(Replace(replace(col,'.','*'),'X','.'),2) col2
    ,parsename(Replace(replace(col,'.','*'),'X','.'),1) col3 from #t)
    ,mycte1 as (
    Select col,
    Cast(ISNULL(Replace(parsename(Replace(col1,'/','.'),2),'*','.'), Replace(parsename(Replace(col1,'/','.'),1),'*','.')) as Decimal(6,2)) col11
    , Cast(Replace(parsename(Replace(col1,'/','.'),1),'*','.') as Decimal(6,2)) as col12
    , Cast(ISNULL(Replace(parsename(Replace(col2,'/','.'),2),'*','.'), Replace(parsename(Replace(col2,'/','.'),1),'*','.')) as Decimal(6,2)) col21
    , Cast(Replace(parsename(Replace(col2,'/','.'),1),'*','.') as Decimal(6,2)) as col22
    , Cast(ISNULL(Replace(parsename(Replace(col3,'/','.'),2),'*','.'), Replace(parsename(Replace(col3,'/','.'),1),'*','.')) as Decimal(6,2)) col31
    , Cast(Replace(parsename(Replace(col3,'/','.'),1),'*','.') as Decimal(6,2)) as col32
    from mycte )
    Select col from mycte1
    Order by col11,col12,col21,col22,col31,col32
    drop table #t

  • Sorting pictures in numerical order for slideshow using Iphoto 7.1.3

    I have scanned hundreds of old slides and assigned titles with an ascending numerical code which I hoped Iphoto would then sort numerically in a slide show.
    This is not happening!
    When I sort by title (the numerical code) Iphoto seems to place them in some binary
    sequence e.g. 1,10,100,101,102 etc. I want them 1,2,3,4,5,etc.
    Help! What am I doing wrong? How can I get them in proper numerical sequence without manually moving them around on the screen?
    When I view the files in their folder as a list they all show in proper numerical sequence. Why will Iphoto not sort them the same way?

    Welcome to the Apple Discussions. At Terence pointed out the alphanumerical listing in iPhoto requires a zero to be added before numbers 1 thru 9 (for less than 99 photos) in order for the numbers to be in the natural order. Renaming as Terence suggested, Photos->Batch Change->Title to Text with sequential numbers added will pad zeros accordingly so you'll get -01, -02, etc., or if more than 100 files, -001, -002, -020, etc.
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger or later), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 6 and 7 libraries and Tiger and Leopard. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.≤br>
    Note: There now an Automator backup application for iPhoto 5 that will work with Tiger or Leopard.

  • Sort in numerical order

    can someone show me how to sort this in numerical order?
    only the first column in order, but the rest of the columns will follow the sorted values.
    does that make sense?
    Solved!
    Go to Solution.

    Cool set of VIs, thanks for sharing pcardinale.
    In this special case the following simple code would also work.
    Ben64
    Attachments:
    Untitled 2.vi ‏11 KB

  • How To: Sort Numbers in Ascending Order in a Generated List

    Greetings! How do I set up a Generated List of Paragraphs so that it sorts in true ascending order? What I want is:
    1.1
    1.2
    1.3
    1.4
    1.5
    1.6
    1.7
    1.8
    1.9
    1.10
    I have tried every trick I can think of with the sort order listed on the reference page. But all I can get is something that sorts by individual number (ignoring the numeric value) like:
    1.1
    1.10
    1.11
    1.2
    1.20
    1.21
    1.3
    Any help is much appreciated!

    Hello there, Michael! Thanks so much for looking at my post! Alas, the LOP will not work. I should have explained more, but it was so complicated I thought folks would give up reading.
    Here's the best I can render it without getting permission to share a good example document. I do not blame anyone if it's too cumbersome or convoluted to wade through...
    This is a requirements document which has sort of a "legal" tinge to it--as the document evolves we must maintain traceability for individual requirements. This means, for example:
    Version 1 - I have requirements 1 and 2.
    Version 2 - I need to add a new requirement, which should appear before requirement 1 in the document. Even though it comes before requirement 1 in the document, numerically it will be requirement 3 and requirement 1 will remain requirement 1.
    Version 3 - I need to remove requirement 2. Even though I now have only 2 requirements, their numbers will not change (they remain requirements 1 and 3, appearing in reverse order).
    Version 4 - I need to move requirement 3 to be after requirement 1. Again, the requirements keep their original number, even though their position has changed and there is no longer a "requirement 2" number in use.
    Originally, I told the team (I'm doing this for a different dept), that they would have to hand-number requirements, which they did for a while. But that was getting very cumbersome, and the scenarios above are limited to one or two occurrences per document. So I created an auto-number sequence for them to use in the initial version and added a little smoke-and-mirrors work process to take care of changes in later versions. The last bit of chicanery I cannot get to work is the index...
    Even if there are no changes to the requirements after the initial version, the index still does not sort in ascending numeric order. It was working with the hand-numbered requirements because they were using leading zeros. But without being able to include leading zeros in the auto-numbering formats (I tried the "use a zero as a tab leader" solution and like to have thrown my new monitor out of the window), I cannot find a solution.
    Or rather, I think the solution is "you have to hand-number requirements".
    For anyone who has made it this far, I truly appreciate your time and patience!
    SFT

  • Is there a way to import pictures into LR in original numerical order? .

    I am new to LR. Imported few hundreds of pictures taken by two different cameras and stored in numerical order in a folder. LR4 rearranged them in some mysterious order that makes no sense to me. I tried to re-sort them in numerical order, but there is no such option under the Sort menu. Only by categories for which I have no use for. Does anybody know how to restore the order of imported pictures in numerical order? Not manually, there are too many and there will be a lot more to come.

    Thanks for advice. It sounds good as you wrote it, but it does not work. I mean the part to find out where the connection was lost and restore it. Items remain grayed out and that is it. How do you restore the connection? Is there some secret DOS command, specifically invented by Adobe so that it cannot be intuitively used from the drop down menu by anyone without completed advanced learning course? I tried to re-import instead, but all pictures in folder are greyed out and import button is greyed out, too.
    After more and more pictures from different folders were losing connections as I tried different things to restore it, I reinstalled the LR hoping that everything, including references to imported pics will be gone. It did not happen. Other importing editors before uninstalling ask if you want to keep pics references in case you change your mind. Adobe does not offer such choice. I made another unwarranted assumption that everything will be wiped out. It was not. But after reading advices like yours, I tried uninstall from inside the LR. That worked. After that I would not try to import the set for editing again. LR acts quite aggressively when importing. It would import not only the folder which I ask, but everything it can find on any connected device. Awful.
    Luckily, the copy of LR 4.4 on my laptop with Win8.1 still recognized the folder and I was able to finish off the editing job. Well, Adobe had yet another surprise for me. When I “exported” the entire collection to JPEG using, just in case, two different Export commands, because there is no one simple “batch convert to JPEG, TIFF or whatever” command available, I found out that there were no edits included with any converted pictures.  After two weeks and dozens of wasted hours I was exactly where I started. So I gave up and now I am half way through the folder again, for about the fifth time, but this time with the simple, straightforward DPP. I may not be getting results like with LR, especially with high/ low tones, but at least I know I am getting something rather than nothing.

  • The entries in "Notes" are shown sorted by date of creation. Can they be sorted alpha/numerically?

    I would like to be able to sort the entries in "Notes" alpha numerically. By default these entries are sorted based on the date of creation of the entry.

    As I said, it works perfectly well for me. Try putting the sidebar into Contact Sheet mode and see if the dates are sorted correctly. Here's an example from my machine:
    As you can see, if you have good eyes, all are arranged in date order, regardless of day, month or year.
    Just two things occur to me about your problem. I see that your date format differs significantly from mine. Try changing it in System Preferences->Language & Text->Formats and see if that has an effect. There may be a bug in regard to how Preview handles the various date formats. You might also try logging into your test account and see if Preview behaves correctly there, with everything in the default state. If you don't have a test account, create one. Leave everything in the default state and keep it around for future tests--it doesn't take much space and is very handy to have around.
    Francine
    Francine
    Schwieder

  • Alpha numeric numbering production orders

    Hi,
        Do we need to have external numbering turned on to have alpha numeric numbers for production orders and planned orders ? By the way is external numbering allowed for planned orders ? If yes then how would MRP create planned orders if only external numbering is allowed ?
    Thanks

    Hi,
    As per my thinking , you can try with following enhancement for getting alphanumeric numbering of production orders :
    PPCO0001  Application development: PP orders
    You need to concetanate the fix part ( alphabetical) alongwith number range maintained for production orders.
    Pls. take help of your abaper for the same.
    You can implement above as Enhancement Project in Tcode : CMOD.
    Hope this helps.
    Regards,
    Tejas

  • Alpha numeric sorting - Array

    Hello all,
      I am stuck in a situation where in my Array has values like this:
    ["01", "03", "XY", "07", "AB"].
    I need to have the array sorted where in the order should be
    ["AB", "XY", "01' , "03, "07"].
    The value "AB" and "XY" should always be the first two and then the numeric values needs to be sorted in asc order.
    Could some one help

    You probably need to break the array into two arrays first to separate the numeric strings from the alphabetic strings.  Sort them in their separate arrays an join them back together into a single array.

  • Alpha Numeric number Ranges for Sales order Acording to sales office wise.

    Hi Experts,
             I have a Issue for genrating sales order numbers With Alpha Numeric Number Ranges for sales office wise Internaly . How can we get this is there any Userexits or badi for this . If Any one Come across this issue plz guide me.
       The Alpha characters should not change that will be sales office region code. only the Numeric numbers should change .
    Ex;   Abc-123000  to Abc-200000
    Regards,
    Ravi.

    This alpha-numeric format is not possible directly with SNRO settings.
    You need to opt for external number range, and in the exit of your respective transaction you need to takecare of this number generation explicitly by programming.
    http://www.sap-img.com/sap-sd/number-ranges-in-sales-order.htm
    any more inputs from experts are welcome..
    Hi,
    1. goto include MV45AFZZ and to user exit Save_document This form is called before COMMITand double click on FORM USEREXIT_SAVE_DOCUMENT.
    2.it will show the program MV45AF0B_BELEG_SICHERN from were this user exit is called, selcet the program and click on Display.
    3. you can use the enhancement point enhancement-point beleg_sichern_01 spots es_sapmv45a. just below the PERFORM USEREXIT_SAVE_DOCUMENT to call the badi method on_costing_component.
    regards.
    santhosh reddy
    Message was edited by:
            Santhosh Reddy
    Message was edited by:
            Santhosh Reddy

  • How do you sort a text field with numeric data in numeric order

    We have a text field (varchar2) that has numeric data. When we sort it the items display as
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    *101*
    12
    Instead of
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    12
    101
    How can I make it display in numeric order if the field is a varchar2
    Howard

    To avoid string-to-number conversion:
    SQL> with t as (
      2  select '1' a from dual union
      3  select '2' a from dual union
      4  select '3' a from dual union
      5  select '4' a from dual union
      6  select '5' a from dual union
      7  select '6' a from dual union
      8  select '7' a from dual union
      9  select '8' a from dual union
    10  select '9' a from dual union
    11  select '10' a from dual union
    12  select '101' a from dual union
    13  select '12' a from dual)
    14  select a from t
    15  order by length(a), a;
    A
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    12
    101
    12 rows selected.Max
    http://oracleitalia.wordpress.com

  • How can I get the songs in my iPod Nano to sort in numerical order?....they show up tht way on iTunes, but on the Nano, they're out of order.

    they show up that way on iTunes when connected to the Nano, (in numerical order) but on the Nano, they're out of order.  The shake to shuttle is off.

    I dragged and dropped it from my desktop to my Nano (through iTunes) and it all loaded in order...if I take it from iTunes, it syncs everything, not just one playlist....even though I choose only one playlist...
    ??? So you are manually managing your iPod's contents. i.e you drag and drop content onto your Nano from under the Devices section in the left hand pane of iTunes.
    What did you drag and drop?
    B-rock

Maybe you are looking for

  • CD burner will no longer burn cds

    Hi, I have just updated to leopard (10.5), and now my cd burner no longer works when I go to burn a cd. The drive can read a disc fine and even sees the blank discs when they are put in, but fails to write on them. I have tried using toast and iTunes

  • Remote Desktop 3.6 fails to save sorting in client list view (on osx10.8)

    Hi there, i have sorted my controlled clients in the "all computers" section via the labels column to group them together by color. this worked fine in older version of ard. now after upgrading from 3.5 the colors of the computers are preserved, but

  • Internal Charges Calculation Error status 03 & Charges disaapearing after FO creation

    Hi Experts, I have done following Config & data set up for Internal Settlement (Forwarding Order) while I intent to do Inter Company settlement. (I am using TM9.0 SP01 version) In Movement Type Stage sequence set to "No Rule" for internal Settlement.

  • Embedded HTML interfere with Business Catalyst site editing

    Hi, It seams that an embedded Google Fusion maps interfere with the the site editing in Business Catalyst - has anyone els had this problem? Can you please let me know how i can solve this problem. The Fusion Map is an essential par of the site and i

  • Fixed ratio for crop tool

    I do a lot of photo cropping. Is it possible to set a fixed ratio for the crop tool? It can be done with the marquee tool, why not the crop tool. I know about Shift-Drag to constrain crop marquee. Thanks for any help, Martin