How to arrange my list by last modified? plz read and u'll know wat i mean

Hey folks
I know this question is a no brainer.. but check this out it's quite weird... so I was on tinypic.com trying to upload an image... and normally i have all my stuff listed by "last modified" because I do a lot of changes to whatever it is I normally work on... but check this out.
screenshot: http://i39.tinypic.com/2i1m3uo.png
You see how it's listing everything as "Last Modified" but what's weird is it shows everything for today in chronological order... why is that?
plz help cuz its super annoying
Thanks.
-Joey

He has clicked the little the column header arrow so it points up, which means it should be displaying things with the oldest at the top and the most recent at the bottom. Indeed, if you skip the files modified "Today" the rest of 'em are in that order, 8/31/08 down to 1/15/09. Even the "Todays" are listed in that order, with the earliest at the top and most recent at the the end of the "Today" group. But they should be in that order at the bottom of the list, not appearing where they do as a little sub-clump above the other items! Anyway, it looks bizarre to me. I wonder if it is something in the software used to upload? Anyway, when I do an Open dialog in the apps I have running (Safari, TextEdit and Preview) and select the Desktop, and click the Date Modified column so the little arrow points up, I see the oldest items at the top, the most recent at the bottom.
Francine
Francine
Schwieder

Similar Messages

  • Track List attachments' last modified metadata

    Hi,
    Do we have any option to display the last modified by/date for a List item's attachment? I know this is stored as a separate column and OOTB it is not possible to view the last modified properties for an attachment. But is this possible?
    Thanks,
    Vimal

    Hi Vimal,
    According to your description, my understandings is that you want to track the list attachments’ last modified by/date metadata in SharePoint.
    I recommend to use the File.ModifiedBy and
    File.TimeLastModified property to get the last modified by/date of list attachments through PowerShell to see if the issue can be solved.
    Here is a similar issue for you to refer:
    http://sharepoint.stackexchange.com/questions/76141/list-attachment-details
    More references:
    http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.client.file_members(v=office.14).ASPX
    http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.client.file.timelastmodified(v=office.14).ASPX
    http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.client.file.modifiedby(v=office.14).ASPX
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • I wanted to know how to view the gifts I've sent to people and (if possible) know if they received and downloaded them. Is there any way to do that, other than asking the person?

    I wanted to know how to view the gifts I've sent to people and (if possible) know if they received and downloaded them. Is there any way to do that, other than asking the person? Obviously I want the gift to be a surprise (for my best friend specifically) so asking them if they received it would ruin that.

    Have you tried resetting your iPod:
    Press and hold the On/Off Sleep/Wake button and the Home
    button at the same time for at least ten seconds, until the Apple logo appears.

  • BAPI -  user last modified Name, Date and Time in SU01 of a Particular User

    HI Experts,
    After searched a lot in SDN , i am posting this thread,
    I want to know any  Standard BAPI  to give LAST modified User name , time and Date in SU01 of a particular User.
    I checked * BAPI_USER_GET_DETAIL* , its giving LAST modified  time and Date in SU01, But I want Last modified user name as well.
    I have 2 questions related with the above scenario,
    1) Which BAPI gives the details of LAST modified User name , time and Date in SU01 of a particular User.
    2) Any Table is there to give details of LAST modified User name , time and Date in SU01 of a particular User for a time period ,
    For eg : 1 month, if i would have set the time line, it should give the three details .
    Regards,
    Saravana.S

    Hi,
    I am not sure, if there would be any BAPI particularly for giving such particular information. Even if you can, you  might have to call 2 BAPIs, one for finding the list of such users modified within 1 month eg., and then getting the mod date and mod time.
    BAPI_USER_GETLIST - this can be used for searching.. but tricky
    then you have to call another bapi for getting the details.
    One option is you can create a new Z BAPI using the table and get the results.
    Regards,
    Amit Mittal.

  • How to get the data for last 3rd business day and also include saturday and sunday if its a wednesday?

    Hi All,
    I have a simple query which is below:-
    Declare @reportdate date
    set @reportdate= (DATEADD(dd,-5,getdate()))
    select * from dbo.Table
    where date IN (@reportdate)
    I need this query to pull the data for the last 3rd business day .So lets say today is monday then i need the data for last week wednesday which is 3 business days back from monday, if today is a tuesday it would be for last thursday ( as 3 business days for
    tuesday would be thursday). But if today is wednesday then i need to be last 3rd business day which is last friday and i also need to get the data for saturday and sunday.
    Can someone please help me how cani change my filter to do this?
    Please let me know if i am still unclear.
    Thanks

    Hi SqlDev12,
    Based on my understanding on your requirement, you can reference the below sample.
    CREATE TABLE BusinessTable
    Bdate DATE,
    Wd VARCHAR(10)
    ;WITH Cte(DT,WD) AS
    SELECT CAST('20150401' AS DATE),DATENAME(WEEKDAY,CAST('20150401' AS DATE))
    UNION ALL
    SELECT DATEADD(DAY,1,DT),DATENAME(WEEKDAY,DATEADD(DAY,1,DT)) FROM Cte
    WHERE DT<GETDATE()
    INSERT INTO BusinessTable SELECT * FROM Cte
    SELECT * FROM BusinessTable
    SET DATEFIRST 7 -- Set Sunday as the first day of a week
    DECLARE @givenDay DATE ='20150415' --Wednesday
    SELECT * FROM BusinessTable
    WHERE Bdate BETWEEN
    --For Monday and Sunday, select last wednesday
    (CASE WHEN DATEPART(WEEKDAY,@givenDay) IN(1,2) THEN DATEADD(DAY,2,DATEADD(WEEK,DATEDIFF(WEEK,0,@givenDay)-1,0))
    --For Tuesday and Wednesday, last week's Thursday and Friday
    WHEN DATEPART(WEEKDAY,@givenDay) IN(3,4) THEN DATEADD(DAY,-5,@givenDay)
    --For Thursday and Friday, current week's Monday and Tuesday
    WHEN DATEPART(WEEKDAY,@givenDay) IN(5,6) THEN DATEADD(DAY,-3,@givenDay)
    --For Saturday, current week's Wednesday
    ELSE DATEADD(DAY,2,DATEADD(WEEK,DATEDIFF(WEEK,0,@givenDay),0)) END)
    AND
    (CASE WHEN DATEPART(WEEKDAY,@givenDay) IN(1,2) THEN DATEADD(DAY,2,DATEADD(WEEK,DATEDIFF(WEEK,0,@givenDay)-1,0))
    WHEN DATEPART(WEEKDAY,@givenDay) IN(3) THEN DATEADD(DAY,-5,@givenDay)
    WHEN DATEPART(WEEKDAY,@givenDay) IN(4) THEN DATEADD(DAY,-3,@givenDay)
    WHEN DATEPART(WEEKDAY,@givenDay) IN(5,6) THEN DATEADD(DAY,-3,@givenDay)
    ELSE DATEADD(DAY,2,DATEADD(WEEK,DATEDIFF(WEEK,0,@givenDay),0)) END)
    DROP TABLE BusinessTable
    If you have any feedback on our support, you can click
    here.
    Eric Zhang
    TechNet Community Support

  • How do I repair permissions when I removed the read and write priveleges to everyone?

    I won't beat around the bush.
    I accidentally disabled read and write priveleges to everyone onto the entire startup drive. It didn't occur to me that would also include admin. I saw a red no-sign on the folder, and now starting up leaves me with the white screen and the gray apple indefinately.
    I'm not sure how to use terminal, but I have been using the time machine - it won't help me any if I can't start up my computer, though.
    Thanks for helping.

    You are very welcome, and if you have not done a Mountain Lion install before, read/print for reference: http://support.apple.com/kb/PH10763  It is easy and straight forward but having the steps in front of you always helps.

  • How to create a graph representing a big tree(parents and children are know

    How to create a graph representing a big tree(parents and children are known)?
    Thank you so much!
    Also, I need to write the graph into a jpg/gif file or display the graph in the web browser.
    I got a code from JGraph and can create the graph I want, although unextendable. However, JGraph define the graph as class Gscene instead of Img or BufferedImg or RenderedImg. Therefore, I couldn't use ImageIO.write(image, ext, file) to write the graph into a jpg file.

    aiGrace wrote:
    How to create a graph representing a big tree(parents and children are known)?Hierarchical data structures are covered here all the time. Please search before you post. This topic has been covered over and over.
    Thank you so much!
    Also, I need to write the graph into a jpg/gif file or display the graph in the web browser. I got a code from JGraph and can create the graph I want, although unextendable. However, JGraph define the graph as class Gscene instead of Img or BufferedImg or RenderedImg. Therefore, I couldn't use ImageIO.write(image, ext, file) to write the graph into a jpg file.Did you read the JGraph API? I'm guessing it exposes a method to get the image data somehow.

  • How To? Select List item return 2 values (high and a low)

    Can anyone suggest how to make a select list drop box return 2 values for my query.
    eg:
    Pick from
    Last Week
    Last Month
    Last Year
    return high/lo values of
    5-feb-06 12-feb-06
    01-jan-06 31-jan-06
    01-jan-05 31-dec-06
    Such that my query can refer to it as
    select *
    from tabx
    where dte > :parm_lo
    and dte < :parm_hi
    You get the idea ..

    I haven't tested this at all, so it may not work, but the first thing that springs to mind is not returning the two dates, base it on the current date, i.e. have your select list return something like -
    Last Week - Return 'W'
    Last Month - Return 'M'
    Last Year - Return 'Y'
    then use a query something like -
    SELECT *
      FROM tabx
    WHERE dte >
              CASE v ('ITEM')
                 WHEN 'W'
                    THEN TRUNC (SYSDATE, 'd')
                 WHEN 'M'
                    THEN TRUNC (SYSDATE, 'Mon')
                 WHEN 'Y'
                    THEN TRUNC (SYSDATE, 'yyyy')
                 ELSE dte - 1
              ENDLike I said, completely untested and may not work...you may also have to play around with the boundary values (NLS settings too perhaps).

  • How to find the list of all queries on each and every cube in the system???

    Hi All,
    I need some method to get all the reports(queries)(technical name and description),run on all the infocubes in the system. The number is very huge...roughly...on each cube there are near about 40-50 reports and the number of cubes is also too high.
    Is there any table or function moudle which can make this job easy and less time consuming.
    Freinds I need this solution urgetly. Please rush back...
    regards,
    minal

    Hi Minal,
    RSZCOMPIC table lists queries built on the cubes.
    COMPUID is an ID of the query.
    RSZELTDIR table contains description of the reporting elements. DEFTP field equals “REP” designates queries.
    Search for  RSZELTDIR-ELTUID = RSZCOMPIC- COMPUID. Field MAPNAME will contain a tech name of the query and TXTLG field – its description.
    Best regards,
    Eugene

  • How have two people using diff clients but same app, and have app know that

    I want to have an app called XMLReader that reads an xml file and then puts it into a JTree. Then I want the person to be able to edit it. But I also want to be able to lock it (using mutex or synchronization) so if someone else on the same network opens up XMLReader, then they cannot edit it at the same time. Also, when they open their app and then Person A edits it, I want it to notify Person B's app.
    Does anyone know how to do this? Can it be done with the two instances and no server?

    I want to have an app called XMLReader that reads an
    xml file and then puts it into a JTree. Then I want
    the person to be able to edit it. But I also want to
    be able to lock it (using mutex or synchronization) so
    if someone else on the same network opens up
    XMLReader, then they cannot edit it at the same time.
    Also, when they open their app and then Person A edits
    it, I want it to notify Person B's app.
    Does anyone know how to do this? Can it be done with
    the two instances and no server?quite interesting
    ok
    i try
    my solution is
    make a interface which has the method which edit the xmlreader to the user whom u want to give the access of
    editing make all the other methods which the other users can use in a different interface and give that instances to them
    hope u will understand the hints if u want more explanation i will give
    in this case make all the other users to register with the Xml reader to get the notifications if the Xml reader is changed by the user who can access
    so it will be quite easy for u now to notify the users when the file is edited
    it can be done both in single JVM and also in different JVM(client server)
    regards
    kamal

  • SO HOW I DELTED MY LIBRARY FOR MY MOTION3.2  PROGRAM AND DO NOT KNOW HOW TO GET IT BACK HELPPLEASE!

    I do not know how to restore my library with all the 3d effects, particles etc and need directions on how to do this so that I can create those awesome action art pieces. thank you

    Restore it from your backup.
    If you do not have a backup and you deleted it and emptied the trash, then unfortunately, you are out of luck. Unless you wish to pay for a data recovery software or service (by company techs).

  • How do I set an external HD permission to read AND write?

    I received an iMac for Christmas and need a little help.  I have a 2TB external HD that contains .shn and .flac files of GD concerts (and other music).  I managed to find Cog that will play them...but what I want to do is download them and move them upon completion to the external HD.  I can not do this because the HD is read only.  I can move stuff to a SD card because it is read and write.  I assume when I change the permission I will be able to move the folder of a show to the HD as well.  Surely this is simple...  Thank You and sorry for the dumb question!

    Your external hard drive is likely NTFS formatted for use with a PC.
    OSX can read but cannot write to NTFS formatted volumes. You can install software that allows writing to a NTFS drive, as Niel has suggested, or you can reformat your external drive using Disk Utility for use with your Mac.
    If you decide to reformat your drive for Mac use, copy your data off to another drive before you proceed.

  • How do I get .jpg's to automatically be read and write for everyone

    When I save a photo in Photoshop CS6 v13, as a .jpg file, it automatically gives me read and write permission, but not others.  This is a pain as I have to change it each time I want to send someone a photo. Anywhere I can make it happen automatically?

    Thanks for responding JJMack. Im using OSX 10.8.4 Mac.
    Ill just save it on my laptop in any old folder.

  • How do I disable the digital signature feature in Reader and Pro XI

    I am using Windows 7 and need to do it Enterprise wide

    If it can be done (doubtful) there will be details in the Enterprise Deployment documentation.  Enterprise Deployment (Acrobat and Reader)

  • Load file on db with file system last modified date info

    Hi,
    i have e procedure for load a file on my DB table.
    How to write on my table the last modified date read for file system?
    Thanks in advance
    Marc

    Try this example to use dbms_pipe for executing the OS commands to get the last modified date of a file.
    calling shell script from sql procedure

Maybe you are looking for