Editing Excel in Browser deletes title from document library.

We just noticed an issue where if we update an Excel file using Office Web Apps, when we return to the library the excel title is missing from the document library. The name and other metadata in the library all seem to be preserved, it's only the Title
field that seems to be deleted. We confirmed this behavior on several different site collections and on our test environment which has SP1 installed as well.
Anyone know of a fix for this?
Thanks. 
Nick Hurst

Hi Nick,
According to your description, my understanding is that the Title became blank after you edited the excel file with Office Web app.
Whether this issue occurred when you edited the files of other types, like word or ppt.
Please install SharePoint 2013 SP1, compare the result.
SharePoint 2013 SP1
http://support.microsoft.com/kb/2817429/en-us
I hope this helps.
Thanks,
Wendy
Wendy Li
TechNet Community Support

Similar Messages

  • How the files are decreasing from RBS storage after some time i delete docs from document library, where shld I check the settings for this?

    HI
    I created a web application and configured  rbs storage ,
    I uploaded documents (for ex: 18 number)
     after uploaded  documents ,  and observed the RBS storage folder, number of files are increasing (39 number) , its working fine
    and also  I run the querys to check the rows increasing or not , (when I upload new doc rows are increased its fine also)
    select count(*) from alldocs
    Select count(*) from AllDocstreams
    but when I delete some docs from document library ,
    1)the doc itself deleted from document library
    2)when I check the rbs storage  there is no number of files are decreased(its still 39 files ), its same as  before doc deleted from doc library
    after some time I found the number of files are decreasing from RBS storage folder in sql server,
    here I want to know the how the files are decreasing from RBS storage  after some time, where  shld I check the settings for this? and how I control on it
    here how I know the settings for cleaning up orphan BLBOS how  these deleted BLOB
    adil

    1. WHen you delete the file from Sharepoint, it is still present in Recycle bin. This is a default setting in sharepoint for 30 days. Once files are deleted fro Recycle bin, it can also be delete from RBS
    2. There is a RBS cleanup job which deletes files from RBS. for more info check 
    http://mehuljamod.blogspot.in/2012/09/remote-blob-storage-maintainer-rbs.html

  • Deleting Songs From iTunes Library...and Keeping Them On Your iPod

    Will this process allow me to delete songs from my iTunes library, but keep them on my iPod?
    1. When iPod is plugged in, check "Only Sync Checked Items" in iTunes
    2. Delete items from iTunes library.
    3. Add new items to iTunes library.
    4. Sync iPod.
    It should keep the songs I deleted from iTunes on my iPod, right?
    If you need me to be any clearer, please ask.
    EDIT: If this will not work, is there another way to do this? The songs I have are taking up a lot of room on my computer.

    Any auto sync method you use will delete the songs from the iPod if you delete them from iTunes.
    You can delete songs from your iTunes/computer hard drive after transferring them to the iPod, and for this you need to set your iPod to manage the songs manually.
    However, this is an extremely risky option because when (and not if) there comes a time to restore your iPod, which is a very common fix for iPod problems, then all the music would be erased. If you no longer have the music in iTunes (or any other back up), then all that music would be lost.

  • I can't delete songs from my library unless I'm in the bulk "music" tab. This will cost me hours of time to sort through. Help!

    I used to be able to delete songs from my library from any playlist by holding ALT and pressing BACKSPACE. Now, this only works in the bulk "Music" tab which lists every single item in my entire playlist. I have about 300 items in my playlist that need to be deleted (They are remnants of deleted files and no longer point to an existing file location). I have a smart playlist that collects all these items, and in the past I would periodically just delete the contents of that list from the whole library. Now I can't do that. I thought of trying to modify all the items under a common album title so I could find the whole group in the "Music" tab and delete them there, but iTunes won't let me modify them because they don't have a valid file path. (That's exactly the reason I'm trying to delete them! AARGH!)
    The only alternative I can think of is to look up every single item individually and manually delete them one by one, which would amount to a few hours of wasted time. I'm so frustrated. I don't understand why each progressive installment of iTunes does away with features that were helpful and useful when they existed. I feel like Apple hates me.Can anyone help me?

    Use Shift+Delete to remove items from a playlist and the library at the same time.
    tt2

  • Retrieve all folder & sub folder from document library in sharePoint 2013

    Hi,
    I want to retrieve all the folder and sub folder from document library and bind it to the dropdownlist using server object model.
    I used the below query to get all folder and sub folder.\
    query.Query = @"<Query><Where><Eq><FieldRef
    Name='FSObjType' /><Value Type='Lookup'>1</Value></Eq></Where></Query>";
                      query.ViewAttributes
    ="Scope='RecursiveAll'";
                     query.ViewFields
    = "<FieldRef Name='Title'/>";
                      query.ViewFieldsOnly
    = true;
    but when I bind result with the dropdownlist,it displays the output as below
    Please Help
    Thank You

    Hi,
    Thanks for posting your issue, Kindly try out below mentioned CAML query to get all the Folders and Subfolders from Document Library
    <Query>
    <Where>
    <Contains>
    <FieldRef Name='FileLeafRef' />
    <Value Type='Text'>token</Value>
    </Contains>
    </Where>
    <OrderBy><FieldRef Name='FileDirRef' /></OrderBy>
    </Query>
    <ViewFields>
    <FieldRef Name='ID' />
    <FieldRef Name='LinkFilename' />
    <FieldRef Name='FileDirRef' />
    <FieldRef Name='FileLeafRef' />
    </ViewFields>
    <QueryOptions>
    <ViewAttributes Scope='Recursive' />
    <OptimizeFor>FolderUrls</OptimizeFor>
    </QueryOptions>
    Also, check out below mentioned URLs to fix this issue
    https://social.msdn.microsoft.com/Forums/office/en-US/35e799a1-9360-46e5-8719-dd35fdace7ea/filter-document-library-folder-through-caml-query?forum=sharepointdevelopmentlegacy
    http://www.ktskumar.com/blog/2009/07/retrieve-all-folders-from-list/
    I hope this is helpful to you, mark it as Helpful.
    If this works, Please mark it as Answered.
    Regards,
    Dharmendra Singh (MCPD-EA | MCTS)
    Blog : http://sharepoint-community.net/profile/DharmendraSingh

  • PowerShell script to find and remove duplicate items from document library

    Hi Friends,
    Please check this below script, It is finding the duplicate items and removing it. This script is not working to find the duplicate items from document
    library and remove. Can you please let me know where it is wrong.
    Add-PSSnapin microsoft.sharepoint.powershell 
    $web = Get-SPWeb -Identity "http://zapltvsspdev02:4333/bu/EXCO" 
    $list = $web.Lists["AECI Documents"] 
    $AllDuplicates = $list.Items.GetDataTable() | Group-Object INumber | where {$_.count -gt 1} 
    $count = 1 
    $max = $AllDuplicates.Count 
    foreach($duplicate in $AllDuplicates) 
    $duplicate.group | Select-Object -Skip 1 | % {$list.GetItemById($_.ID).Delete()} 
    Write-Progress -PercentComplete ($count / $max * 100) -Activity "$count duplicates removed" -Status "In Progress" 
    $count++ 
    Remove-PsSnapin Microsoft.SharePoint.PowerShell
    Note:
    In the above code, duplicates are found using the "INumber" column. 
    valmiki

    check this
    http://stackoverflow.com/questions/21337158/delete-duplicate-items-in-sharepoint-list

  • Delete file from iTunes Library and Computer

    I convert a lot of my own TV shows for playback on iPad/iPod touch. Once I have watched the show I delete it from my library.
    It used to be that when I deleted from my library, I would get a message asking if I wanted to delete from library only or from library AND computer. It does not ask me this anymore.
    I went into preferences and clicked on "reset all warnings" but that didn't fix the problem. Any tips on how to restore this functionality?

    What I mean is I don't want an extra copy of the file made when I add something to my library. I already have the file where I want it.
    I did try your suggestion, and just as I suspected, it made an extra copy in a different location on my computer, then when I deleted it, yes, it asked me if I wanted to move it to the recycle bin, but it only deleted the copy, not the original.
    I'm marking your response as helpful, as I can use it as a workaround if I can't find a better solution, but I have never done it this way before. I've always had full control over which folders my shows were in, and only one copy. And when I've deleted, it has deleted the original file, not just a copy of it.

  • Error while deleting image from picture library

    Facing issue in deleting pictures from picture library from a site collection created in SharePoint 2010 mode in SharePoint 2013.  Though we can open the picture and delete it from 'Delete Item' from the ribbon, we cannot delete the pictures from Actions
    -> Delete option.  
    Here is the exception
    Level:Medium Category: General
    Application error when access /_layouts/DeleteMu.aspx, Error=Object reference not set to an instance of an object.   at Microsoft.SharePoint.WebControls.DeltaPage.LoadPageStateFromPersistenceMedium()    
    at Microsoft.SharePoint.ApplicationPages.DeleteMultipleItemPage.<LoadPageStateFromPersistenceMedium>b__0()     at Microsoft.SharePoint.ApplicationPages.LoadViewStateHelper.LoadViewStateOrNull(Func`1 loadPageStateFunc)    
    at System.Web.UI.Page.LoadAllState()     at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
     

    Hi Shivayogi,
    Whether you migrate SharePoint 2010 to SharePoint 2013, and kept in 2010 mode.
    If yes, please create a new site collection, then test again, compare the result.
    Whether other libraries could work correctly.
    Whether this issue occurres for 2013 mode site collections.
    Best Regards,
    Wendy
    Wendy Li
    TechNet Community Support

  • I tried taking some songs off my phone, I deleted them from the library on my computer but they're still showing up on my phone?

    I tried to take some songs off my phone that I no longer wanted. I unchecked them just in case I wanted them back on later, but they would not remove. So I just deleted them from my library on my computer, but for some reason they are still showing up on my phone with no option to delete. When I plug my phone into my computer they're not showing up in the library anywhere. How do I get these songs to come off my phone?

    Try going to Settings>Music on your phone, turn off iTunes Match, then turn it back on to let it re-load your Match library.  Also confirm that Show All Music is turned on.

  • How to delete video from iTunes library? del and shift+del are not working - no any reaction

    how to delete video from iTunes library? del and shift+del are not working - no any reaction.

    seb963 wrote:
    Hi
    Currently, iMatch is turned off on my computer, as I do not want to upload any more songs. If I turn it on, will it upload all songs that are currently in my library? Is there another way that deleting them one by one?
    You must enable iTunes Match on the new computer. The best way to accomplish what you want to do is to create a new, empty library by launching iTunes while holding down the Option key (Shift on Windows) and choosing "new library." Do not let iTunes scan for new content, but do enable iTunes Match on the empty library. Once the scan is finished you may delete tracks from the cloud. When you are done switch back to the main iTunes library.

  • How do I delete movies from iTunes library? I have moved them to the iCloud and now only seem to have the option to hide the icon in iCloud.  I am sure I chose poorly at the 'keep file' window.  Please help. My Brain hurts- 18   movies need to go-.

    How do I delete movies from iTunes library? I have moved them to the iCloud and now only seem to have the option to hide the icon in iCloud.  I am sure I chose poorly at the 'keep file' window.  Please help. My Brain hurts… 18 plus movies need to go….  Thank you.

    Instead of removing the music from the cloud or the iTunes library why not shuffle your music using a Smart Playlist which excludes the holiday music, or tracks that are not checked. For example, use this very simple Smart Playlist:

  • Deleting photos from the Library and Disk

    When I delete photos from my iPhoto 5 library because I don't want the photo anymore and would like to free up disk space, it is easy enough to do. However when I look in my Library folders, the image still exists in the Month/Day folders. I had to review all of those folder to find the photos I just deleted and delete them again, at that point I gained the disk space I was hoping for. Is there a more straight forward way to delete the photo from the disk at the same time you are deleting it from the library? Ideally some fancy keyboard combo.

    hi Blake,
    images you delete in the iPhoto library are not deleted from hard drive UNTIL you empty iPhoto's trash bin. iPhoto keeps the image from your view in the library but it is still sitting safely in the dated folder in the finder, just in case you change your mind. When you are absolutely sure you want to delete the image go to the menu bar and hit iPhoto/Empty trash (there is also a keyboard shortcut listed there. I think it is shift command Delete.)
    The trash bin is all the way on the bottom of the source column.
    You can control click on the trash icon and empty the trash that way too.
    Make sure you empty the trash often and don't let too many images pile up there. iPhoto has been known to choke on trying to trash too many images at a time.

  • Drag and drop the file from document library to desktop in sharepoint 2013

    can we drag and drp the file from document library to desktop in sharepoint 2013
    Blitz

    We are using third party tool called PageLight for
    SharePoint Outlook Integration which provides drag and drop functionality of emails from Outlook to SharePoint.  Other features includes
    Save Outlook emails to SharePoint and also moving files/folders from file share.
    Thanks
    Alfred

  • HT201302 i can not delete photos from photo library from my iPhone 4

    i can not delete photos from photo library and onother folder contain same photo in the photo library from my iPhone 4
    thnx

    Delete them the same way you put them there.  The sync process.  Deselectg the album in itunes and sync.
    Photo Album contains ALL synced photos and you can also view those exact same photos, not duplicates, from the albums.

  • HT201317 how to delete photos from photo library iphone4s

    how to delete photos from photo library iphone4s?

    Nope I am using the same Photo Library, not the camera roll and by the looks of it you don't have your iphone updated to the newst version because I have an extra field in the bottom bar for photostreaming.
    When I go in any of the above folders I can remove pictures as well as you can see in the pictures below!?
    Hope this helps...

Maybe you are looking for