Playlist sorting options

I would love to be able to sort my playlists by Artists, then drill down by album so as not to clutter my Spotify. It's pretty hard to organize my playlists the current way. Any ideas on a future iteration that will enable this capability?

Please implement alphabetical sorting at the least.  It is something I have considerd lacking since day one.  I still love the service and have paid for nearly 3 years now, but it seriously needs better sorting options so that I can instantly get to an album/playlist.  It's daft because it all has to be done manually, and android puts new playlists at the top and mac at the bottom of the list.  Just a button to organise, it can't be that difficult?  I fail to see why all these apps and integration can be used to best effect without proper sorting options.  It really is a drag, people.  Thanks for listening...

Similar Messages

  • Still no Playlist sorting options-Deal breaker.

    I have been a strong supporter of Spotify since the beginning. In fact, I pay for 2 (that's right 2) Premium accounts in my household. That is about to change. The lack of easy Playlist sorting is unforgiveable. I can't count how many times I've almost wrecked my car looking for my Chet Baker playlist and have to scroll down down down when it could be easily found if I could sort things alphabetically. It's a basic function and I could swear it used to be available. It's too bad because I absolutely love Spotify otherwise. So any recommendations on a service that is similar to Spotify but has the very basic and standard function of sorteable lists/folders? Thanks a ton!

    I can sort my giant list of playlists by name, date etc.  but can't find a way to do this while using the Windows version of Spotify on my laptop.  This is silly.

  • Playlist sorting options: Syncing between Desktop/iPhone

    Does anyone know how/why playlists aren't organized the same between iPhones and the Desktop? For example, I have a playlist that I've curated using my iPhone for songs to play in a particular order. When I open Spotify on my desktop, this order is obsolete and I can only organize the songs by category (title, artist, length, date added).  Can anyone advise on how to solve this issue? Thanks!

    Hello Sapozhnik, I'm afraid I'm new to Mac/iOS development myself so I don't have any specific information for you but as I understand things you could take one of these approaches:
    You could send the data entered from the iPhone/Mac to an online database as soon as it's entered and retrieve it from said database when it's loaded into a view, the issue with this approach is that the app is useless if the user doesn't have a connection.
    You could store the data on a local database (for both the Mac and iPhone) and then synchronize the local database with an online database when the user connects.
    I'd look into SQLite and mySQL for storing the information you want to transfer. My suggestion would be taking the second option so the user does not require an internet connection to use your application. If it were me I'd look at syncronizing two local SQLite databases with one online mySQL database. The challenge will be determining which update(s) to sync with the online database as the user could make changes to the desktop app and the mobile app prior to connecting to the internet.
    I know I haven't included any code as I currently have no idea how that would be written but hopefully it helps if you're looking for a direction to go in.

  • [All Platforms][Playlists] Playlist sorting

    Add ability to sort playlists alphabetically or arrange them in whatever order the end user prefers to more easily go through the playlists.

    Updated: 2015-07-13Hello and thanks for the feedback!
    A similar idea has also been suggested here:
    https://community.spotify.com/t5/Live-Ideas/Playlist-sorting-options/idi-p/181
    Add your kudos and comments there please! ;)

  • [Playlists] Sorting my playlists (not sorting songs, artists, etc within playlists)

    When I first got my Spotify account I could created a playlist and they were automatically listed (sorted) alphabetically. It worked great for me. All of my playlists I denoted iWorkout, iFocus, iChill, iWakeup, etc. Then followed up with the genre of music last, for example... iWorkout - Rap, iWorkout - Rock, etc. If I was working out all of my workout lists were grouped. If I needing to focus, to chill, to wakeup! I could easily find what I wanted. At some point an update came through and all of my playlists are listed by creation date?? I guess?? Sucks monkey balls. Now my playlists are all over the place and the ones that I use the most I have to scroll all the way to the bottom to find, why? Because I created them first... and we can't even sort ascending or descending by creation date. It's just dumb - my opinion. It's been months... I assumed others would complain for me, but it's not returned or been enhanced. So, here's my complaint.  Please return the sorting to alphabetical or give us the option to sort them as we prefer, by date created, by alphabet, by last accessed, or whatever others may be asking for. Thanks-so-much

    Updated: 2015-07-02Hello and thanks for the feedback!
    Any news regarding this request will be announced in the original idea topic here:
    https://community.spotify.com/t5/Live-Ideas/Playlist-sorting-options/idi-p/181
    Please add your kudos and comments there, if you haven't already. ;)

  • [Web Player][Playlists] Sort Playlists in Browser

    I have a Chromebook and thus use the web player exclusively now. Unfortunately, there is no way to organize and sort playlists or even songs within playlists within the brower version so my playlists are currently a mess. Would love to add sorting features to the web browser version.

    Updated: 2015-07-06Hi and thanks for your contribution! A similar idea has also been suggested here:
    https://community.spotify.com/t5/Live-Ideas/Sort-options-for-playlist-on-web-app/idi-p/350820
    Add your kudos and comments there please!

  • Sort option in BEX Report

    Hi All,
    In the Bex Reoprt. I need to sort a Keyfield . If right click on keyfield
    following options are coming (but, sort option is not there in this) again if i double click on keyfield sort option is coming but it is not working... what is the reason can anyone explain me.
    *Back to Start
    Keep filter value
    Fileter and Drildown according to
    Add Drilldown according to
    Swap key figures with
    Calculate
    Goto
    Coditions
    Cur.Translation
    All Characteristics
    Properties*
    full point sure for this....
    thanks,
    KN

    You can make a descending sorting for your key figure using the condition TopPercent (Top%) and take the value 100. To sort ascending, use the BottomPercent (Bottom%) condition on your key figure.
    Then 100 % of the values of your key figure will be shown in a descending sorting by default in your query (without using a view).
    I used the feature in the newest BEx Query Designer (7.x) and it works fine, I don't know if it's available in the older version (3.x).
    Please assign points.
    Kind regards,
    Ben De Windt
    Belgium

  • Print or download ALV report with sort options

    Dear friends,
    How i can download into excel or print ALV report with sort options, like customer name column with similar values should not repeat in the print out or download file.
    Regards,
    Praveen Lobo

    Hi Praveen,
    Use this code, its working:-
    *FOR SORTING DATA
    DATA : it_sort TYPE slis_t_sortinfo_alv,
           wa_sort TYPE slis_sortinfo_alv.
    *          SORT W.R.T. CUSTOMER NAME
      wa_sort-spos = 1.
      wa_sort-fieldname = 'NAME1'. "field customer name
      wa_sort-tabname = 'IT_KNA1'. "internal table with records
      wa_sort-up = 'X'.
      APPEND wa_sort TO it_sort.
      CLEAR wa_sort.
    "this will sort the ALV o/p for customer with same name
    "now the name will not be repeated
    "records with same name will be grouped
    *          DISPLAY RECORDS IN ALV GRID
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
      EXPORTING
        i_callback_program                = sy-repid "report id
        it_fieldcat                       = it_field "field catalog
        it_sort                           = it_sort "sort info
      TABLES
        t_outtab                          = it_kna1 "internal table
      EXCEPTIONS
        program_error                     = 1
        OTHERS                            = 2.
      IF sy-subrc <> 0.
      ENDIF.
    Hope this solves your problem.
    Thanks & Regards,
    Tarun Gambhir
    Edited by: Tarun Gambhir on Dec 31, 2008 1:13 PM

  • How can I save my finder arrange/sort options once and for all?

    I'm opening the Finder View Options panel and resetting the arrange and sort options several times a day and it's driving me nuts. The Finder ignores my desperate pleas to apply these options system-wide and seems to purposely forget the options I chose the day before.
    I notice that the Icon view, List view, and even the Cover Flow view in the Finder get a "Use as Defaults" button in the View Options. Those of us in the Column View don't get that button, though. What have we done to deserve this?
    I'd like the Finder to now and forevermore open every window with the following options:
    Column View
    Arrange By > Kind
    Sort By > Name
    Can anyone help me make this happen? Thanks!

    I've found setting the Arrange By to anything other then None gives different results then what I expected.
    Select Column View from the Tool bar then open View Options and set Arrange By to None and Sort By to Name.
    If you then see the names in reverse alphabetical order click on list in the tool bar then on the Name column header to put them right. in Alphabetical order, then switch back to column view on the Tool bar. you should be good to go from there
    Whoever thought up Finders View logic should have their head checked.

  • Help on Oracle Report sort option!

    Hi,
    My query in Q_1 of Oracle report is select &a_code ori_code ,&a_desc ori_description from &a ori_lup order by &b. When click on OK button it says
    ORA-00936: missing expression
    select ori_code,ori_description from ori_lup order by ==>
    I am not able to resolve this problem.
    What I am trying to do is I have some maintenance tables which have almost same columns like code, description. I want to define a single report and pass on parameters to this report, so that I can use same report for different tables. If I dont give order by clause it is working fine, but I should also provide sort option based on user selection of sort by code/description.
    Thanks for your help.
    Param Dasana
    null

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Andrew Tselischev ([email protected]):
    Hi
    If I correcly understand you need sorted query, if the parameter 'b' is given, and not sorted query otherwise.
    This may be done, for exeample, by the following way.
    1. Delete the text 'order by' in your query as follows:
    select &a_code ori_code ,&a_desc ori_description from &a ori_lup &b
    2. Create 'AFTER PARAMETER FORM' trigger:
    function AfterPForm return boolean is
    begin
    IF LENGTH( LTRIM( RTRIM( :b ) ) ) > 0 THEN
    :b := 'ORDER BY ' | | :b;
    ELSE
    :b := '';
    END IF;
    return (TRUE);
    end;
    I think it will help for you.
    Andrew<HR></BLOCKQUOTE>
    Thanks Andrew , it worked with your suggestion!!!
    Param.
    null

  • DRQ# Payment Wizard Loses Sort Option

    Hi,
    The sort function in the SAP payment wizard, loses it's settings in Step 6. In Step 3, you can sort the BP name field to sort by alpha, but in Step 6 the sort converts back to numeric, by BP Code. Our client is having problems with this when making their invoice selections in the wizard, as their invoice filing system is alphabetic and they have a large pile to sort through when making payments.
    I would have thought the sort option should retain throughout the wizard from Step 3 to Step 6. Additionally it would be nice if in Step 6 there was also the option to sort again if needed.
    Thanks,
    Lianne

    Dear SAP,
    Is this question so difficult, nobody can give a response so far??
    with regards,
    Eddy Rademakers

  • Sort option in Repetitive Area on AR Invoice PLD is disabled / greyed out

    Hi Experts,
    I have an issue whereby in my PLD the sort option under Print Layout Design Manager -> Repetitive Area -> Sort is greyed out / disabled in the AR Invoice PLD. Does anyone know why this might be? I've not seen this before and I can't find any notes relating to specifically to this issue in an AR Invoice PLD.
    2007A PL06 Hot Fix 01.
    Many thanks for any help,
    Caroline

    Hello Khushwant,
    In SAP when your business Process is Sales Order --> Delivery --> AR Invoice
    SAP would print the Batch Numbers along with the Delivery document.
    But your Business Process is Sales Order --> AR Invoice
    SAP would print the Batch Numbers along with the Invoice document.
    Whichever document releaves inventory, SAP will Open the Batch selection screen when adding that document and the Batch Report will be printed on a seperate sheet along with that document.
    The functionality change in SBO 2007, is that the Batch number print on the Delivery / Invoice document itself instead of on a seperate Page as in 2005.
    Could you please explain your Business Process in relation to what I have mentioned earlier.
    Printing the Batch Number as part of the Invoice document itself in SBO 2005 is going to be a tough task.
    Let me know if where and how you want to print this information.
    Regards
    Suda

  • Sorting options in table maintenance

    Hi All,
    I have created one ztable and created table maintenace generator for the same and also created the transaction code for the same to maintain the data just like SM30.
    Here my requirement is as soon as we execute the transaction code, it will display all the fields to maintain. with the options of  change, new entries, copy as, select all, deselect all, delete etc..  But along with that I need to have the sorting options at the application tool bar.
    Thanks in advance.
    Regards
    Ramesh .

    you may have to change the tablemaintenance function group , you may need to include those option by changing the pf-status and the corresponding function needs to handled in the pai.
    instead of that...
    i would suggest you to use custom program to maintain the table entries.

  • Sort options right justified in list view

    New to Maverick's, but I can't get my finder window to "stick" with the layout of the "sort options". My biggest beef is that I have the "Name" sort far left followed by "Date modified", etc.. yet every day in every new finder window, the 2nd sort jumps to right justified. I want this sort option to stick to the left alongside name. I use large monitors and scrolling over everytime to drag the sort modifier to the left is frustrating. Is there a solution?

    My guess would be the Images folder (Pictures in English) is designed to have the special, contextual grouping types.
    I don't know why they couldn't make them available in the dropdown menu, also, but they're not.
    I did a little testing and found if I called it Pictures unsorted, the options were available, but if I called the folder unsorted Pictures, they weren't.
    Try naming the folder starting with Images
    Edit: If I select the dimension and resolution column headers in the folder, then change the name of the folder, the columns are retained.

  • Sort Folders in Library by Date or other sort options

    I find myself hunting for folders that I've imported in the Library module.
    It would be so nice if there was an option to sort folders in the Library by date imported or date last edited or ANYTHING other than alphabetically. Seems like a easy and really obvious fix.
    Thanks!

    I too use folders as a primary means of organization. In fact, if Lightroom did not support folders, it would have been a deal breaker - I absolutely would not have bought it, period - its that important to me). We are perhaps a dieing breed - but not dead yet.
    I use collections extensively too for organization, but more for special purposes as opposed to a "lowest common denominator of organization" (folders).
    That said, I name my folders so they show up in the order I want them too - i.e. use a prefix (e.g. numeric) and they'll always be ordered properly. Interesting note: Lighroom is smart enough to auto-detect numeric prefixes and order them correctly without needing to pad with zeros (e.g. '2 Day After New Years' will come before '10 Resolutions - Holding Firm'). However, plenty of other software is not, so I pad anyway (e.g. '02 Day After New Years'... - that way they show up in the correct order when served via DLNA or anything that has alphabetic ordering but is not "numeric-prefix-smart" like Lightroom.
    PS - One of the functions of my up-n-coming Lr-sidekick-app/plugin duo is a (possibly full length) folder pane (which would generally be placed on an auxiliary monitor) - so folders are available in develop mode too. I may add a folder-sort option, although I don't need it m'self.
    Cheers,
    Rob

Maybe you are looking for

  • Safari won't open after updating

    Help! I am fairly new to the world of Mac and really need help! I recently updated a whole bunch of stuff and now Safari won't open at all. If you have any ideas for me to try, keep in mind that this is all new to me so keep it simple please!!!! Chee

  • Quicktime will not work and / or install

    I am having video conversion problems. My Final Cut Express video will not convert to Quicktime. When I click my Quicktime icon to open it gives me a question mark. When I try to install new Quicktime download it doesn't install and gives me the ques

  • ISQLplus not working

    Hi forum, isqlplusctl start : okay. http://<servername>:5560/iSQLplus doesn't work. Is there any need to make an entry into /etc/services or tnsnames.ora or listener.ora ? Or must iSQLplus be installed separately ? http://<servername>:5560 works and

  • IWeb will not publish after 1.0.1 update

    Just chiming in that I am having the same problem. I add a page to my site and it logs in to .Mac but crashes during the upload with the message "Publish Error: An unknown error occurred." And I just spent 30 minutes talking to the applecare people a

  • Layer styles gone rogue?

    (P-shop CS5, Mac OS 10.6.8) I have a doc with several layers. I have layer style "Bevel & Emboss" applied to an element on one layer. But, when I apply layer style "Inner Shadow" to an element on another layer, it messes with the layer style settings