Sort Datetime and Varchar Challenge

Hi! I want to sort datetime (converted to varchar) and varchar together , here is test data generation sql.
SELECT CONVERT(VARCHAR(10),GETDATE()-3,111) AS TEST_DATE INTO #TMP_TEST
INSERT INTO #TMP_TEST SELECT CONVERT(VARCHAR(10),GETDATE()-5,111)
INSERT INTO #TMP_TEST SELECT CONVERT(VARCHAR(10),GETDATE()-7,111)
My expected result should be date in descending order and 'Not Specified' on bottom.
I've tried following sql but 'Not Specified' always on top.
SELECT * FROM #TMP_TEST
UNION ALL
SELECT 'Not Specified'
ORDER BY TEST_DATE DESC
A very bad workaround is to add a space in the beginning of 'Not Specified', like this ' Not Specified' and the result works.
Just want to consult if there is a better way to meet my requirement. 
BTW, TEST_DATE list would be used in Reporting Service query criteria, let user pick a date to query. 'Not Specified' means query ALL TEST_DATE.
Thank you in advance.

Check this conditional order by statement:
SELECT  CONVERT(VARCHAR(10),GETDATE()-3,111) AS TEST_DATE INTO #TMP_TEST
INSERT INTO #TMP_TEST SELECT  CONVERT(VARCHAR(10),GETDATE()-5,111)
INSERT INTO #TMP_TEST SELECT  CONVERT(VARCHAR(10),GETDATE()-7,111)
INSERT INTO #TMP_TEST SELECT  CONVERT(VARCHAR(10),GETDATE()-6,111)
INSERT INTO #TMP_TEST SELECT  CONVERT(VARCHAR(10),GETDATE()-1,111)
INSERT INTO #TMP_TEST SELECT  'Unknown'
SELECT * FROM #TMP_TEST ORDER BY CASE WHEN ISDATE(TEST_DATE) = 1 THEN TEST_DATE END DESC 

Similar Messages

  • I need to pass a query in form of string to DBMS_XMLQUERY.GETXML package...the parameters to the query are date and varchar ..please help me..

    I need to pass a query in form of string to DBMS_XMLQUERY.GETXML package...the parameters to the query are date and varchar ..please help me build the string .Below is the query and the out put. ( the string is building fine except the parameters are with out quotes)
    here is the procedure
    create or replace
    procedure temp(
        P_MTR_ID VARCHAR2,
        P_FROM_DATE    IN DATE ,
        P_THROUGH_DATE IN DATE ) AS
        L_XML CLOB;
        l_query VARCHAR2(2000);
    BEGIN
    l_query:=  'SELECT
        a.s_datetime DATETIME,
        a.downdate Ending_date,
        a.downtime Ending_time,
        TO_CHAR(ROUND(a.downusage,3),''9999999.000'') kWh_Usage,
        TO_CHAR(ROUND(a.downcost,2),''$9,999,999.00'') kWh_cost,
        TO_CHAR(ROUND(B.DOWNUSAGE,3),''9999999.000'') KVARH
      FROM
        (SELECT s_datetime + .000011574 s_datetime,
          TO_CHAR(S_DATETIME ,''mm/dd/yyyy'') DOWNDATE,
          DECODE(TO_CHAR(s_datetime+.000011574 ,''hh24:'
          ||'mi''), ''00:'
          ||'00'',''24:'
          ||'00'', TO_CHAR(s_datetime+.000011574,''hh24:'
          ||'mi'')) downtime,
          s_usage downusage,
          s_cost downcost
        FROM summary_qtrhour
        WHERE s_mtrid = '
        ||P_MTR_ID||
       ' AND s_mtrch   = ''1''
        AND s_datetime BETWEEN TO_DATE('
        ||P_FROM_DATE||
        ',''DD-MON-YY'') AND (TO_DATE('
        ||P_THROUGH_DATE||
        ',''DD-MON-YY'') + 1)
        ) a,
        (SELECT s_datetime + .000011574 s_datetime,
          s_usage downusage
        FROM summary_qtrhour
        WHERE s_mtrid = '
        ||P_MTR_ID||
        ' AND s_mtrch   = ''2''
        AND s_datetime BETWEEN TO_DATE('
        ||P_FROM_DATE||
        ',''DD-MON-YY'') AND (TO_DATE('
        ||P_THROUGH_DATE||
        ','' DD-MON-YY'') + 1)
        ) B
      where a.S_DATETIME = B.S_DATETIME(+)';
    SELECT DBMS_XMLQUERY.GETXML('L_QUERY') INTO L_XML   FROM DUAL;
    INSERT INTO NK VALUES (L_XML);
    DBMS_OUTPUT.PUT_LINE('L_QUERY IS :'||L_QUERY);
    END;
    OUTPUT parameters are in bold (the issue is they are coming without single quotes otherwise th equery is fine
    L_QUERY IS :SELECT
        a.s_datetime DATETIME,
        a.downdate Ending_date,
        a.downtime Ending_time,
        TO_CHAR(ROUND(a.downusage,3),'9999999.000') kWh_Usage,
        TO_CHAR(ROUND(a.downcost,2),'$9,999,999.00') kWh_cost,
        TO_CHAR(ROUND(B.DOWNUSAGE,3),'9999999.000') KVARH
      FROM
        (SELECT s_datetime + .000011574 s_datetime,
          TO_CHAR(S_DATETIME ,'mm/dd/yyyy') DOWNDATE,
          DECODE(TO_CHAR(s_datetime+.000011574 ,'hh24:mi'), '00:00','24:00', TO_CHAR(s_datetime+.000011574,'hh24:mi')) downtime,
          s_usage downusage,
          s_cost downcost
        FROM summary_qtrhour
        WHERE s_mtrid = N3165 AND s_mtrch   = '1'
        AND s_datetime BETWEEN TO_DATE(01-JAN-13,'DD-MON-YY') AND (TO_DATE(31-JAN-13,'DD-MON-YY') + 1)
        ) a,
        (SELECT s_datetime + .000011574 s_datetime,
          s_usage downusage
        FROM summary_qtrhour
        WHERE s_mtrid = N3165 AND s_mtrch   = '2'
        AND s_datetime BETWEEN TO_DATE(01-JAN-13,'DD-MON-YY') AND (TO_DATE(31-JAN-13,' DD-MON-YY') + 1)
        ) B
      where a.S_DATETIME = B.S_DATETIME(+)

    The correct way to handle this is to use bind variables.
    And use DBMS_XMLGEN instead of DBMS_XMLQUERY :
    create or replace procedure temp (
      p_mtr_id       in varchar2
    , p_from_date    in date
    , p_through_date in date
    is
      l_xml   CLOB;
      l_query VARCHAR2(2000);
      l_ctx   dbms_xmlgen.ctxHandle;
    begin
      l_query:=  'SELECT
        a.s_datetime DATETIME,
        a.downdate Ending_date,
        a.downtime Ending_time,
        TO_CHAR(ROUND(a.downusage,3),''9999999.000'') kWh_Usage,
        TO_CHAR(ROUND(a.downcost,2),''$9,999,999.00'') kWh_cost,
        TO_CHAR(ROUND(B.DOWNUSAGE,3),''9999999.000'') KVARH
      FROM
        (SELECT s_datetime + .000011574 s_datetime,
          TO_CHAR(S_DATETIME ,''mm/dd/yyyy'') DOWNDATE,
          DECODE(TO_CHAR(s_datetime+.000011574 ,''hh24:'
          ||'mi''), ''00:'
          ||'00'',''24:'
          ||'00'', TO_CHAR(s_datetime+.000011574,''hh24:'
          ||'mi'')) downtime,
          s_usage downusage,
          s_cost downcost
        FROM summary_qtrhour
        WHERE s_mtrid = :P_MTR_ID
        AND s_mtrch   = ''1''
        AND s_datetime BETWEEN TO_DATE(:P_FROM_DATE,''DD-MON-YY'')
                           AND (TO_DATE(:P_THROUGH_DATE,''DD-MON-YY'') + 1)
        ) a,
        (SELECT s_datetime + .000011574 s_datetime,
          s_usage downusage
        FROM summary_qtrhour
        WHERE s_mtrid = :P_MTR_ID
        AND s_mtrch   = ''2''
        AND s_datetime BETWEEN TO_DATE(:P_FROM_DATE,''DD-MON-YY'')
                           AND (TO_DATE(:P_THROUGH_DATE,'' DD-MON-YY'') + 1)
        ) B
      where a.S_DATETIME = B.S_DATETIME(+)';
      l_ctx := dbms_xmlgen.newContext(l_query);
      dbms_xmlgen.setBindValue(l_ctx, 'P_MTR_ID', p_mtr_id);
      dbms_xmlgen.setBindValue(l_ctx, 'P_FROM_DATE', to_char(p_from_date, 'DD-MON-YY'));
      dbms_xmlgen.setBindValue(l_ctx, 'P_THROUGH_DATE', to_char(p_through_date, 'DD-MON-YY'));
      l_xml := dbms_xmlgen.getXML(l_ctx);
      dbms_xmlgen.closeContext(l_ctx);
      insert into nk values (l_xml);
    end;

  • Difference between char and varchar, also the difference between varchar2

    Hi,
    Can anyone explain me the difference between char and varchar, and also the difference between varchar and varchar2...

    Varchar2 is variable width character data type, so if you define column with width 20 and insert only one character to tis column only, one character will be stored in database. Char is not variable width so when you define column with width 20 and insert one character to this column it will be right padded with 19 spaces to desired length, so you will store 20 characters in the dattabase (follow the example 1). Varchar data type from Oracle 9i is automaticlly promoted to varchar2 (follow example 2)
    Example 1:
    SQL> create table tchar(text1 char(10), text2 varchar2(10))
    2 /
    Table created.
    SQL> insert into tchar values('krystian','krystian')
    2 /
    1 row created.
    SQL> select text1, length(text1), text2, length(text2)
    2 from tchar
    3 /
    TEXT1 LENGTH(TEXT1) TEXT2 LENGTH(TEXT2)
    krystian 10 krystian 8
    Example 2:
    create table tvarchar(text varchar(10))
    SQL> select table_name,column_name,data_type
    2 from user_tab_columns
    3 where table_name = 'TVARCHAR'
    4 /
    TABLE_NAME COLUMN_NAME DATA_TYPE
    TVARCHAR TEXT VARCHAR2
    Best Regards
    Krystian Zieja / mob

  • Sort Artist and Sort Album tags don't update

    Having spent a lot of time over the years getting the metadata in my iTunes library just right, I've noticed a frustrating problem when it comes to iTunes Match.
    I make use of 'Sort Artist' and 'Sort Album Artist' tags so that my library is sorted by artist surname (eg. Lennon, John).
    This always worked correctly when I syncronised my music via iTunes, but since switching over to iTunes Match this has become problematic.
    When I initially signed up for iTunes Match, my Library moved over correctly - honouring the sort order tags that I had added. However, When I add NEW music to the library and subsequently change the sort tag, the change does not propegate to iTunes Match (Though it does appear correct in iTunes on my Mac). So the result is now a mixed sort order on my iOS devices - some by first name and some by second.
    Under iOS 5.0 and iTunes 10 I used to be able to get around this with a little forethought - I would turn iTunes Match OFF on the Mac before adding any new songs, then I would edit the tags and then switch Match back on. This would rescan the library and add the new tracks to the cloud complete with correct metadata.
    This workaround no longer works under iOS 6 and iTunes 11.
    I have tried switching iTunes match off on my iPhone and restarting it. This does not work either.
    Does anyone else have this issue or know of a way to 'force' the metadata to be updated?
    Any help would be appreciated.

    I also am finding it impossible to convince my iPhone that the Album Sort field exists. This is especially odd considering when I view my Home Shared music from my iPhone, it works exactly correctly. I have verified that the tags are being uploaded to iTunes Match by viewing the songs from another computer that has iTunes Match. So, for some reason, iOS 6 will not sort by the Album Sort field when using iTunes Match music.
    Does anyone have any sort of fix or workaround for this problem? I've submitted Feedback to Apple.

  • ITunes 12 sorting artists and albums wrong/out of order

    Hi,
    So I'm using iTunes 12, though this problem occurred with 11 too...
    As you can see in the image, I'm using Mac DeMarco as an example, it happens with selected other artists too. I have two albums of his, yet they don't appear together and there are multiple instances of the artist. Even the albums don't appear together. Both of them have the same "Artist" and "Album Artist" information.
    Here you can see one instance:
    Here's the second instance. Note, the artist appears amongst the "D" artists, after Deftones for some reason, instead of "M" with the other album:
    What is going on? Please help.

    Enable the Sort Artist and Sort Album Artist columns, chances are that the fields have been set inconsistently.
    tt2

  • In Mavericks, is there a way to sort by and arrange by date modified?

    In Mavericks, is there a way to sort by and arrange by date modified? I know how to do it in normal finder, however, if I try to upload something or open a document, it will not sort or arrange by date modified. I can sort by, but I cannot arrange by. It always seems to reset itself as well in finder for me. Is there a way to make this the default view?

    Hello Miss Vicky
    Check out the quoted section below to change how finder opens up as well as other information on changing Finder views.
    Mac OS X: How to Save a Finder View (Column, Icon, or List) for a Specific Folder or Disk
    http://support.apple.com/kb/TA20803
    OS X Mavericks: Choose options for viewing items in Finder windows
    http://support.apple.com/kb/PH13896
    How to set a preferred view
    There are several ways you may open a given item in a new Finder window for the purpose of saving a view, but this method is the simplest. Follow these steps:
    Close open Finder windows.
    Click the Finder icon in the Dock.
    Choose Preferences from the Finder application menu.
    Click "Always open folders in a new window" to enable that option.
    Open the item for which you wish to set a view. It should appear in its own new window.
    Set the desired view in the new window.
    Close the new window.
    Repeat Steps 5 to 7 for any item you wish to set.
    If desired, click "Always open folders in a new window" to disable that option.
    Close the Finder Preferences window.
    Regards,
    -Norm G. 

  • Group by sort order and display accordingly

    I have two groups - primary sort order and a secondary sort order in my report, formula for both follows:
    If {?Sort Order}='1' then {PRODUCT_CUSTOMER_MNT_V.CUSTOMER_NAME}
    else if {?Sort Order}='2' then {PRODUCT_CUSTOMER_MNT_V.PRODUCT_ID}
    else if {?Sort Order}='3' then {PRODUCT_CUSTOMER_MNT_V.CUST_REVISION_LEVEL}
    else if {?Sort Order}='4' then {PRODUCT_CUSTOMER_MNT_V.CMS_UD36}
    else if {?Sort Order}='5' then {PRODUCT_CUSTOMER_MNT_V.CMS_UD38}
    else if {?Sort Order}='6' then totext(year({PRODUCT_CUSTOMER_MNT_V.PURCHASE_DATE}),0,"")"/"
    right("0" + totext(month({PRODUCT_CUSTOMER_MNT_V.PURCHASE_DATE}),0,""),2)"/"
    right("0" + totext(day({PRODUCT_CUSTOMER_MNT_V.PURCHASE_DATE}),0,""),2)
    Groups are suppressed and fields are placed in the detail the line.  I have a request to group by Customer name with selected product ID's listed or vice versa.   My quandry is how do I accomodate the descriptive fields in the page header since the user can select any number of combinations using the sort order parameter.  Sure, right now they are only looking at customer and product ID but let's face it, that requirement could change in the future.  Seems simple enough but it's been awhile since I've touched reports and my brain is fuzzy.  Is what I'm trying to do possible?   Crystal XI (11.0.0.1282)

    I was overthinking the problem.  The report was already sorting on customer or product based on user selection.  I placed the customer ID/Name field and the Product ID field into group one and checked the underlay following section box in section expert.  This is will work fine for our purposes.

  • Artist sort order and TSOP tags

    Can someone please help me understand how tagging and sort orders behave on an iPhone in advance of my buying one.
    I like to browse my music library by artist and, for example, I prefer to have "David Bowie" sort under "B" rather than "D". I believe that the spec for ID3v2.4 tags added the TSOP (Text Sort Order Performer) to over-ride the sorting order. Does the software on the iPhone take notice of the TSOP (or any alternative) tags when browsing by artist so that I can sort in the way I want?
    - Julian

    Sort order can either be set in iTunes or, if tagging using other programs before importing into iTunes, then the correct tags names to add are "Sort Artist" and "Sort Album" which will then be recognised by iTunes.

  • Help with Sort sequence and reset preferences

    Hi,
    I have checked the "sort" checkboxes and the "sort sequence" in my first 5 columns of the sql report. The sequence are straight 1,2,3,4,5.
    I have also create two buttons. The first one that will trigger a pl/sql that would execute RESET_USER_PREFERENCES built-in package, and a second button that just submit. The page submit to itself by default.
    It appears that the Reset Preferences does not follow the "sort sequences". Take a look at: http://htmldb.oracle.com/pls/otn/f?p=15031:2:
    Check what happen with the second column OBJECT NAME: I expect to see CUSTOM_AUTH first and then CUSTOM_HASH second once you Reset User Preferences. Interesting is that when I just press the refresh button, then i get what I want, but i think that is just coincidence as there is not guarantee that the data are going to be displayed in that order once you start deleting and inserting in the middle.
    Any help in order to understand the "sort sequences" concept is appreciated.
    Thanks

    Anybody?

  • Sort method and adjustment account for Regrouping Receivable and Payables

    Hi Gurus,
    Kindly send to me sort method and adjustment accounts for regrouping receivables/payables paths and T-code
    Warm Regards
    Abdul

    Hi Jiger
    Thank you so much your fast reply.
    Also i have material its give configureation path but i try to go through that path but i didnt find it out right screen please let me know config path:
    IMG->FINANCIAL ACCOUNTING->AR/AP->BUSINESS TRANSCATION->CLOSOING->REGROUP->DEFINE SORT METHOD AND ADJUSTMENT ACCTS FOR REGROUPING RECEIVABLES/PAYABLES.
    But i cant see the path, Please let me know there is any mistake in path or not
    Warm Regards
    Abdul

  • Sort up and sort Down push buttons in module pool with table control wizard

    hi,
    i have created 2 buttons for Sort up and sort Down push buttons in module pool with table control wizard
    please any one can help me.
    regards

    Hi
    Following code is to enable and disable the tbl control using two buttons. Just alter the code and for each button write the sort code.
    REPORT  YJAN27_SCREEN                                               .
    TABLES: SFLIGHT, YFLIGHT_28.
    TYPES: BEGIN OF struct1,
          carrid like sflight-carrid,
          connid like sflight-connid,
          fldate like sflight-fldate,
           END OF struct1.
    CONTROLS TBL1 TYPE TABLEVIEW USING SCREEN 2700.
    DATA: OK_CODE LIKE SY-UCOMM,
          CARRID LIKE SFLIGHT-CARRID,                                    "cols in tbl ctrl
          CONNID LIKE SFLIGHT-CONNID,
          FLDATE LIKE SFLIGHT-FLDATE,
          itab TYPE TABLE OF STRUCT1 WITH HEADER LINE,
          cols like line of TBL1-COLS,
          FLAG TYPE I.
    FLAG = 1.
    CALL SCREEN 2700.
    *&      Module  STATUS_2700  OUTPUT
    *       text
    MODULE STATUS_2700 OUTPUT.
      SET PF-STATUS 'BACK'.
    *  SET TITLEBAR 'xxx'.
    ENDMODULE.                 " STATUS_2700  OUTPUT
    *&      Module  USER_COMMAND_2700  INPUT
    *       text
    MODULE USER_COMMAND_2700 INPUT.
    OK_CODE = SY-UCOMM.
    CASE OK_CODE.
      WHEN 'BACK'.
        LEAVE PROGRAM.
      WHEN 'DIS'.                                                         "write code for sort up
        loop AT TBL1-COLS INTO COLS.
           COLS-SCREEN-INPUT = 0.
            MODIFY TBL1-COLS FROM COLS.
        ENDLOOP.
        FLAG = 2.
      WHEN 'ENA'.                                                       "write code for sort down
        loop AT TBL1-COLS INTO COLS.
            COLS-SCREEN-INPUT = 1.
            MODIFY TBL1-COLS FROM COLS.
        ENDLOOP.
        FLAG = 1.
    ENDCASE.
    ENDMODULE.                 " USER_COMMAND_2700  INPUT
    *&      Module  GET_DATA  OUTPUT
    *       text
    MODULE GET_DATA OUTPUT.
      select carrid connid fldate from SFLIGHT into table itab.
    ENDMODULE.                 " GET_DATA  OUTPUT
    *&      Module  POPULATE_TBL  OUTPUT
    *       text
    MODULE POPULATE_TBL OUTPUT.
        MOVE-CORRESPONDING ITAB TO SFLIGHT.
    ENDMODULE.                 " POPULATE_TBL  OUTPUT
    *&      Module  CHANGE_SCREEN  OUTPUT
    *       text
    MODULE CHANGE_SCREEN OUTPUT.    " use this module if you want to hide the other button
    CASE FLAG.
      WHEN 1.
        LOOP AT SCREEN.
          IF SCREEN-NAME = 'B_ENA'.
            SCREEN-INVISIBLE = 1.
             MODIFY SCREEN.
          ENDIF.
        ENDLOOP.
        LOOP AT SCREEN.
          IF SCREEN-NAME = 'B_DIS'.
            SCREEN-INVISIBLE = 0.
             MODIFY SCREEN.
          ENDIF.
       ENDLOOP.
      WHEN 2.
        LOOP AT SCREEN.
          IF SCREEN-NAME = 'B_DIS'.
            SCREEN-INVISIBLE = 1.
            MODIFY SCREEN.
          ENDIF.
        ENDLOOP.
        LOOP AT SCREEN.
          IF SCREEN-NAME = 'B_ENA'.
            SCREEN-INVISIBLE = 0.
             MODIFY SCREEN.
          ENDIF.
       ENDLOOP.
    ENDCASE.
    ENDMODULE.                 " CHANGE_SCREEN  OUTPUT
    PROCESS BEFORE OUTPUT.
    MODULE STATUS_2700.
    MODULE CHANGE_SCREEN.     " use this if you want to display one button at a time
    MODULE GET_DATA.
    loop at itab WITH control TBL1.
        MODULE POPULATE_TBL.       " populate tbl ctrl
    endloop.
    PROCESS AFTER INPUT.
    MODULE USER_COMMAND_2700.    " do the sort operations
    loop at itab.
      endloop.
    Hope this helps
    Regards,
    Jayanthi.K

  • Sorting Albums and Folders

    Is there a way to sort albums and/or folders (such as by alphabet) other than manually moving them into the order you want?
    Also, regarding difference between an album and a folder, am I correct that a folder may hold several albums but an album cannot hold another album or folder? Please distinguish the two and their differences for me.
    Thanks for your help.
    Vernon

    in the source pane on the left right click and choose "sort albums" to sort them Alpha - which is the only choice - and there is no undo so be sure you want that
    albums hold photos - folders hold either albums or other folders but not photos
    LN

  • I need to set up folders in I pad and I phone to sort received and sent email

    I need to learn how to create folders on I Phone and I pad to sort incoming and sent emails I need to save. Hope someone can help me?

    You create a save folders from your computer then sync your iphone with iTunes.
    When you create your email account, it should automatically have a incoming and sent folders.
    IOS setting up email account http://support.apple.com/kb/ht4810

  • How to alphabetically sort albums and folders within a folder

    Much to my dismay, I discovered that iPhoto will not alphabetically sort folders or albums that are within a folder. It will only sort folders and albums (in separate groups) that are at the "root" level beneath the ALBUMS label. I used "iPhoto Folder Import 1.0" to import multiple clip art and stock photo files which resulted in many nested folders and albums that did not stay in alphabetical order (because iPhoto often randomize them when you add them to an existing folder).
    Here's how to get around the problem.
    Albums: 1. Select all the albums in a folder. 2. Drag the albums to the ALBUMS label so they end up on the root level. 3. Right click on any of the selected albums and choose "Sort Albums." 4. Drag the still selected albums back into their original folder. They should retain their alphabetical order.
    Folders: 1. Close all the folders that you want to alphabetize. 2. Follow steps 1-4 above with "folders" in place "albums."
    I cannot understand why sorting won't work within folders. I also do not understand why we don't have the option to alphabetically interleave folders and albums. The only way to achieve this is to create folders for just one album, which seems silly.

    crossrulz wrote:
    CSmith8 wrote:
    Thank you for a quick response.
    How do you suggest i resolve the issue of different data types in order to use this function? I have tried a few different ways and have whenever I adjust, it wont run through my sub VI's correctly due to being different data types.
    You have to READ THE FILES.  Jeff just showed you how to use a FOR loop to go through the files.  You still need to open the files, read them and then process the data.
    I had assumed from CSmith8's original post that the text file processing vi worked.  just drop that vi into the for loop and wire the file name in!
    Alternately, attach the code that processes the file and a sample file.  I bet we can show you a thing or two about how to do it cleaner and faster  then point you to the right learning resources so one day you can show us some new tricks.
    -Old Dog Jeff·Þ·B
    (Why does everyone forget the commas?  alt+0183 alt+0222 alt+0183) 

  • Arrange Sort Files and Folders in CC Website

    Does anyone know how to arrange and/or sort files and collections in the Creative Cloud website?  I uploaded files, and they are currently listed there in the order they were updated.  I would like to sort them alphabetically with collections first then files.  How can I do this?  Thanks.

    Currently there is no functionality like you describe, but I agree that this would be really helpful.
    I created an idea/feature request for the functionality here, please add your vote and comments
    http://forums.adobe.com/ideas/1575
    Thanks,
    -Dave

Maybe you are looking for