The broken link error

Hi,
Please help me with this broken link error in Office Excel 2010. Thank you.
The problem is: a broken link cannot be removed from the file. The link was used in data validation, which refers to a list of values. After the path was corrected, it still shows there’s a broken link. Here are the details:
I have 4 files named “000TVA_Test – 3”, “000TVA_Test – 4”, “000TVA_Test – 5”, and “000TVA_Test – 6”. The posterior files were developed based on the previous files.
In Test-3, sheet “Template “, cell “L4”, “O4”, “R4”… were built as dropdown list using data validation. The list source is in the “Library” worksheet. There’s no problem so far.
Test-4 was firstly copied from Test-3. In this file I renamed the worksheet from “Library” to “Setting” and the link was broken from here. I can also fix the broken link in this file. (While I didn’t realize there was a broken link.)
In Test-5 I fixed the path, but every time when opening the file, the broken link still shows.
In Test-6 I’ve removed the data validations. The broken link is still there.
I tried to find solutions online. I tried common methods, cannot find anything in the files is still using links. I also tried the “findlink.xla” add-in, but it only worked for Test-4, and couldn’t find the link in other files.
Please help. Thank you!
I uploaded files here: https://onedrive.live.com/redir?resid=1A97736E0ABBAA41!113&authkey=!AF5wAd9rwUPnYyE&ithint=folder%2cxlsm
Thanks again!

Hi,
Based on my tested the files downloaded, I found that Test-5 & Test-6 included the "A defined name that refers to an external workbook", Test-4 had not. (Please click Formula Tab>Name Manage, you'll see them.)
However, the Break Links command cannot break the following types of links:   
A defined name that refers to an external workbook
A ListBox control with an input range that refers to an external workbook.
A DropDown control with an input range that refers to an external workbook.
http://support2.microsoft.com/kb/291984/en-us (It also applies to Excel 2010)
Thus, we'd better try the workaround: re-build the Test-5 & Test 6.
Regards,
George Zhao
TechNet Community Support
It's recommended to download and install
Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
programs.

Similar Messages

  • Broken link error message

    I get an error message whenever I click "help with this widget."  It tells me that the link (to Adobe help??) is broken and that I must send an email.  But it doesn't tell me where to send the email, or to whom.  I desperately need help with this widget and am frustrated by the broken link.

    From: Nancy O.
    Sent: Thursday, January 31, 2013 5:33 PM
    To: CeliaThaxter
    Subject: Broken link error message
          Re: Broken link error message
          created by Nancy O. in Dreamweaver - View the full discussion

  • Is the CS4 Link Checker Broken?

    The Link Checker in CS4 correctly shows me my broken links.  In the Files tab, I create a new file to fix one of the broken links.  I run the link checker again, and it still reports the file as missing, even though it is now listed in the files tab.
    If I exit Dreamweaver, come back in, and run the link checker again, it runs correctly (it doesn't show the link as broken).
    Is this a user error or a bug?
    Brian

    Hi
    This is not really a 'bug', it just takes cs4 a while before including your new file into the site cache. To give you some idea of how long, try cut/paste a file from your os's file browser into dreamweaver.
    PZ

  • I want to delete all the songs with broken links at once

    I lost a file with a lot of songs on it and it can't be retrieved.  How can I delete all the song titles with broken links at once without having to delete 500 songs one at a time?

    One way to identify the broken links in your library is to create this set of playlists:
    Lost & Found playlists
    Create a playlist called Found, select everything in Music and drag it into the Found playlist. Create a smart playlist called Lost matching All the rules Playlist is Music and Playlist is not Found. Your lost tracks will be in this playlist. They can be deleted with CTRL+A then SHIFT+DELETE.
    Or use iTunes Folder Watch and enable its option to check for dead tracks on startup.
    If you have any Apple devices that could hold the lost media see this user tip.
    Finally, while I'm handing out advice, see this backup tip to avoid this problem again.
    tt2

  • A LOT of iTunes broken links/tracks after Music folder move...

    So yeah, I'm getting a TON of broken links / dead track links in iTunes after having to do two things to my iTunes install recently and I'm at wits end trying to fix it.
    I keep my iTunes Music Folder on an external and share the iTunes library between my work Macbook Pro and my home Macbook. Every Friday I drag my iTunes folder and all contents from my MBP onto an external and replace the iTunes folder on the 'weekend' MB, then do the same back on Monday. I keep my iTunes music 'View' as 'Date Added' so that I can always be listening to whatever is newest. It's how I roll.
    Well, this week I had some data problems during the transfer and had to use a previous week's iTunes Music Folder, which was fine as I hadn't added much this week.
    I also got a new external because the old one was getting a little shady, so after doing the iTunes Music Folder replacement I moved my music all over to a new external drive, told iTunes where it all was at. iTunes did it's thing, 'organized' my stuff and all seemed good - until I got back deeper into the catalogue of music and started getting a LOT of broken tracks. The songs are still there, in the correct folders and all, but for some reason iTunes isn't finding them.
    When I say a LOT, I mean so far it's hundreds of my 13,000 songs.
    Now I COULD use the 'Super Remove Dead Tracks' script from Doug's to find all the broken files then re-add the whole library, but it will add all the old songs out of order because they will get a new 'Added' date.
    I could also manually move thru my whole library holding down the arrow key for 'Next' to find all the broken links then go thru, select them, and use the 'iTunes Track CPR' script from Doug's to re-add them to the library with ratings intact, but still they will be out of order time-wise.
    I cannot find a script that will parse my library, find broken links, and re-associate them with their tracks, nor can I figure out why this happened and any other way to fix it. Repairing permissions hasn't helped. Any other ideas?

    Just to follow up with a more comprehensive example of looping through a Library to detect & repair "missing" file-tracks:
    <pre>
    property kErrAENoSuchObject:(-1728)
    on run
    tell (application "iTunes")
    set theLibraryPlaylist to (first library playlist)
    tell theLibraryPlaylist
    set theNumCandidateFileTracks to (count (every file track))
    repeat with i from 1 to theNumCandidateFileTracks by 1
    -- Get a reference to this file-track
    set thisFileTrackRef to (file track i)
    -- Get this file-track's info (useful for debugging, etc.)
    set thisArtist to (artist of thisFileTrackRef)
    set thisAlbum to (album of thisFileTrackRef)
    set thisName to (name of thisFileTrackRef)
    set thisFileTrackInfo to (thisArtist & " > " & thisAlbum & " > " & thisName)
    -- Display a diagnostic message every 500th file-track
    if ((i mod 500) = 0) then
    tell me
    display dialog ("Checking file-track #" & i & ": " & ¬
    return & return & thisFileTrackInfo) ¬
    buttons {"Cancel", "•"} giving up after 2.5
    end tell -- me
    end if
    -- Retrieve this file-track's target file (an AS 'alias' object), if any
    -- {!!! NOTE: Due to a bug in iTunes 7.x+ (esp. when downloading), AS might
    -- be unable to access the 'location' field of some file-tracks !!!}
    try
    set thisFileTrackTargetFile to (location of thisFileTrackRef)
    on error errMsg2 number errNum2
    -- Check whether it's that bizarre error: (-1728) "Can't get location of …"
    if (errNum2 = (kErrAENoSuchObject of me)) then
    -- Set up to just skip this track (assume it's being downloaded)
    set thisFileTrackTargetFile to (anything) -- (Other than 'missing value')
    else (* Re-signal all other errors *)
    error errMsg2 number errNum2
    end if
    end try
    -- Check whether this file-track is "missing" its target file
    if (thisFileTrackTargetFile = (missing value))
    -- Inform the user
    tell me
    display dialog ("Repairing this missing file-track: " & ¬
    return & return & thisFileTrackInfo) ¬
    buttons {"Cancel", "•"} giving up after 2.5
    end tell -- me
    -- Set up this target file's new pathname (e.g., via explicit user input, or
    -- better yet automatically reconstructed from this file-track's tags such
    -- as Artist, Album, Name, Kind, etc.)
    -- ... Translate this file-track's kind into a filename-extension
    set thisKind to (kind of thisFileTrackRef)
    set thisNameExt to "m4a" -- ... Default
    if ({thisKind} is in {("Protected AAC audio file")}) then -- Older DRM'd file
    set thisNameExt to "m4p"
    else if ({thisKind} is in {("MPEG audio file")}) then -- MP3
    set thisNameExt to "mp3"
    else if (thisKind contains "movie file") then -- E.g., interactive booklet
    set thisNameExt to "mov"
    end -- (thisKind = "MPEG audio file") ... else if ... else ...
    -- ... Auto-build this target file's new pathname
    set thisTargetFileNewPathname to ("New Disk:New Path:" & ¬
    thisArtist & ":" & thisAlbum & ":" & thisName & "." & thisNameExt)
    -- Assign this new target file (as an AS 'alias' object) to this file-track
    -- (This is the crucial step that was impossible in older versions of iTunes!)
    set (location of thisFileTrackRef) to (alias thisTargetFileNewPathname)
    end if -- (thisFileTrackTargetFile = (missing value))
    end repeat -- with i from 1 to theNumCandidateFileTracks by 1
    end tell -- theLibraryPlaylist
    end tell -- (application "iTunes")
    end run
    </pre>
    Regards,
    --P

  • Broken link to Presenter 8 Trial download

    Broken link to trial: 
    https://www.adobe.com/cfusion/tdrc/index.cfm?product=presenter
    How about "Request Information", maybe some one can send me a good link?
    https://www.adobe.com/cfusion/mmform/index.cfm?name=contact_us&sa=elearning
    Another Broken Link.  Hmm.  This is getting complicated.
    OK, diferent approach.  Google "adobe presenter 8 trial".  Ahh, this looks good:
    https://www.adobe.com/go/trypresenter
    Broken Link
    Back to Google.  Second link:
    http://www.adobe.com/support/downloads/product.jsp?product=153&platform=Windows
    Jackpot!  Finally a good link. 
    Download latest full install 7.0.7.  Error during installation: "Error - Unable to detect Microsoft Powerpoint", which is odd, since I have PP installed.
    Google errormessage, and discover 7.0.7 doesn't support 64-bit PP 2010.  Sigh.
    8.0.2 does, apparently, but the only file for that is an upgrade - not an installer.
    Guess I should report those broken links, right?  Maybe if they get those fixed, I'll be able to get the Presenter 8 install?
    So, took the "Broken Link" link from error page I get when accesing first link above, and it takes me to http://www.adobe.com/aboutadobe/contact.html
    No obvious place to report a broken link.  Feedback? OK, I'll try that.
    Report a bug?  Closest thing I see:
    https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform
    Broken Link!
    So I can't download a trial that I can install, even though I have a supported product installed, I can't report thebroken Link, and, of course, it being a weekend, I can't contact Adobe Support.
    Frustrating.  If this is the quality of the web site, what does that say about the quality of the products?
    Anyway, I still want to try the trial, but in the meantime, I guess I'll try Authorpoint.

    delete your adobe.com cookie and retry https://www.adobe.com/cfusion/tdrc/index.cfm?product=presenter

  • Strange Broken Link

    I have an SQL Report with a link to a detail page.
    The link works for 9 out of the 10 rows, but on the 10th row, I'm getting a http 404, broken link error. The link is the same, session is the same, and the only difference is value of the key being passed into the next page. To make this even more strange, when I cut and paste the hyperlink into a new browser, the link works!
    Any ideas? Where can I look to find a potential problem?

    Nope...I use application items for keys used on multiple pages to simplify linkage and minimize parameter passing. I'm pretty darn certain about what caused this....
    First, I copied the page that was returning the 404 into a new page and started removing functionality with the hopes of identifying the problem area. Please realize that the page would work perfectly and then would suddenly stop rendering, so I new that something (data, code) was causing the intermittent issue.
    The first thing I did was remove ALL conditional logic on all items within the page and it still didn't render. Then I started deleting objects (on the copied page). The first thing I deleted was all the buttons, and sure enough, the page rendered perfectly, so I knew the problem was somewhere within the buttons. I moved all the buttons to specific region locations ('edit', 'create', 'create2', 'next', 'previous', etc.) and sure enough, the page rendered perfectly, using the exact same data that caused the problem, without any other changes. I've had no problems since.
    Because there seem to be doubts about this, I just recreated the problem. I moved all of the buttons to region template position #change# and it worked fine. I moved all of the buttons to region template position #create# and bang, the problem has reappeared. So the issue is within the #create# position. It causes a complete abort with an HTTP 404.

  • Broken Links - Bookmarks

    I recently had a lot of broken links in my project - many of
    which I was able to fix. The broken links I was unable to fix, or
    remove from the list, are bookmarks in the project (95 of them to
    be exact.) I test the link, and it is fine - it's not broken. Why
    is it showing up in the broken link list? If I try to restore the
    link, I'll get an error stating that the "#" character cannot be
    used in the path. The "#" character signifies that it's a bookmark,
    created by RoboHelp, so I don't know why this is happening. Can
    anyone assist?
    Thank you,
    Danni

    If you are linking from the top of the topic to a bookmark in
    the same topic, you don't need the filename in the link, but
    correct form is with quote marks..
    If the bookmark is called bookmark, the link would be
    < a href="#bookmark" >Go to the bookmark</a>
    (spaces inserted only for display here)
    The bookmark itself would be
    < a name=bookmark></a>
    I hope this is relevant to your problem.
    Harvey

  • Deleted a pic, broken link, lesson learned

    Thanks to Beverly Maneatis' description in other posts I learned that iDVD 09 project file does not hold all the elements needed (images, pics, sound clips) for a project. I made a DVD for my brother who took his family to Disney. Imagine my surprise when the Drop Zones showed the "broken link" icon; I had deleted the images I dropped thinking they'd be saved within the project file.
    So my question to you all: how do you organize your iDVD workspace? Do you set a up a folder and add ALL files associated w/ the project including the saving of proj. file?
    Cheers
    Frank

    You do not have to regorganize your workspace to utilize iDVD without losing your links. You can certainly do this if you wish and if it seems to be more sensible to you, but it is not necessary if you do not disturb any of the media you are using.
    I save ALL of my iDVD projects as disk image files after I have finished editing the project, before I burn to disk. I do not rename, move, delete or change any of the media elements used in the project until after the disk image has been created, and I have used it to burn at least one DVD disk. Then, before deleting anything, I play the burned DVD to be absolutely certain it is correct.
    When I have done that, I delete the original iDVD project and the original iMovie used to create the iDVD project, both to save space and because I no longer need the iDVD projects.
    A disk image file is self-contained....all the media used is encoded within it so you don't have to worry about losing it.
    (I also export my edited iMovie back to miniDV tape in my camcorder...my reason to stay with iM6).
    The only reason to keep an iDVD project is if you think you might want to re-edit. If you always keep the images used for it in the same location, iDVD can always locate them for burning. But, for me, once I have finished the project and a burned disk plays correctly, I have rarely wanted to go back and change/redo the project. Once I found a spelling error on one of the subtitles, and once I found some other minor error, which I corrected before deleting the project. I have probably created several hundred iDVD projects, and I have not found the need to redo them. If I need another DVD of any project, I just burn from the disk image file, using Disk Utility.

  • So many Partial Albums are broken links?

    I just browsed the iTunes Store today. I found plenty of "Partial Albums" that happen to be broken links. You click on the link and the iTunes Store gives an error message: *Your request could not be completed. The item you've requested is not available.*
    I'm not talking about only 2 or 3 random albums here. I'm willing to list a dozen examples here if Apple wishes me to do so, in order to track down the "broken links" so that they can fix it. This just happens to be the first time that I noticed this problem is so widespread.

    The best way to report this issue is to contact the iTunes Store Customer Service department using the link at the bottom of the Purchase Issues FAQ web page and let them know which albums you've discovered to be experiencing this problem.
    Regards.

  • OracleWorld broken links - Tips,Tricks,Techniques

    I get a broken-link error when attempting to retrieve either of these files:
    OracleWorld 2003: Top 10 Most Popular Sessions
    4. Oracle Database: Tips, Tricks, and Techniques
    40118_sgeorge_Tips and tricks for DBA V2.ppt
    40118 - sgeorge Tips and tricks whitepaper 2003.doc

    Hi Ronald,
    Apologies for the delay in responding to you.
    The Documentation Feedback forum is for issues relating only to the OTN Documentation pages at:
    http://otn.oracle.com/documentation/index.html
    Perhaps you could try the Member Feedback forum instead at: Community Feedback (No Product Questions)
    Regards,
    Les

  • How to delete broken links from robohelp 9

    Currently I'm using Robohelp 9, unable to perform following actions in the project:
    1. Permananetly delete broken links from the project.
    2. Updated content and file are shown in search but not in index and in index broken links files are shown.
    Kindly tell me how to solve this issue , as my project is too big and unable to delete broken links as they are re-appearing again in the 'broken link' folder after deleted by me.

    Hi Rick/Swaraj,
    Thanks for replying!
    I would like to tell you that , I'm using a robohelp 9 project and have generated .CHM file and in the .CHM file all stated errors are showing.
    Also , I'm unable to find .XPJ and .CPD files.
    Kindly tell me in project where these files are located and if there is any other option to solve the problem?
    I didn't find too the repair option , there is a restore option after left click, I'm restoring the broken link and then deleting them. But the deleted files are reappearing in the broken link folder. Kindly tell me is there any option to delete all files from broken link folder as they are not required.

  • Broken Links in iTunes - files have not been moved

    Hi,
    I'm running iTunes on my XP machine. I have about 10,000 tracks in my library. Every so often (well quite often nowadays) I get a load of tracks that have the exclamation mark next to them saying the file can't be found. I have not moved any of the tracks. When I double click ont he first offending track it asks if I want to locate it. I click OK, and it presents the folder where the file actually is (and always has been!) I then have to go through the rest of my library - each track with an exclamation mark just needs to be double clicked and it miraculously remembers where the file is!
    OK, so the questions are:
    1) Why is iTunes forgetting the locations of files that haven't moved? I'm guessing there might be some issue with the iTunes Music Library.xml - but I ahve no idea what.
    2) Can I stop it happening? Obviously the best solution is to dump windows and buy a mac - which will be happening in a month or so...
    3) If I can't stop it happening, is there a way for iTuens to just show me the broken links so that I can go through the double-clicking process easily?
    4) If I delete the library and recreate, will iTuens remember things like bespoke artwork, ratings, etc?
    Any help would be appreciated.
    Thanks,
    X.

    +"4) Absolutely not; the ITL file holds ratings, playcount, date added and other metadata that will be lost. And you can't get it back by rebuilding your library from the XML file."+
    Actually, this is exactly what you can do with the XML file. Prior to iTunes 5.0, importing the XML did not capture rating, playcounts, etc. even though the data was written to the XML file. Since then, you can recreate your Library completely by importing the XML file.
    A while ago I performed two tests:
    a) One where I deleted the total song references from the Library, then 'imported' the XML file (from a previously saved iteration)
    b) The other, I opened iTunes with no Library database to start, forcing it to act like a new install, then imported the XML file
    In both cases, the XML file was completely read, including Ratings, Play Counts and Last Played attributes. All playlists (both Smart & Static) were recreated in their proper folders. It seems to have recreated the Library almost as well as the ITL file would. Looks as if iTunes v6.0.1 (and later) now reads and uses the complete XML file upon 'import'.
    I say 'almost', as there were settings differences when starting from a 'virgin' iTunes. Also (and this is important), the create/load time when using the XML file was severely long. iTunes needed to read, interpret, and act on the information within the XML file and that took a long time. At that time, I had close to 12,000 song references and over two dozen playlists. Using a 'good' backup ITL file is an almost instantaneous fix.
    Bottom line: Either file will work in recreating the Library. A backup ITL file, in my opinion, is still the easiest and fastest way to recreate your Library if one has a choice. In some cases, where one cannot place the music into the correct path for the ITL file to work properly, one can globally change the XML file to reflect the new path and use that for a very close approximation. I would suggest making and archiving legacy copies of both files a big part of your backup strategy (along with the music files, of course).
    Hope this clears things up for you.
    Best of Luck

  • How do I fix "broken links" in iTunes?

    Hey Guys!
    I just got my first ipod and I'm going insane trying to set it up this morning. The main problem is that for some reason iTunes decided to add each of my songs twice, but then marked one with that "!" sign that I think idicates a broken link. I've uninstalled and reinstalled the program, and for the life of me I can't determine why it's doing this.
    Shouldn't it just automatically know the files don't exist and take them out of my library?
    Or, can I tell it to go fix the broken links? If so what is the command for doing that?
    I am running Windows Vista if that makes a difference. And my brand new ipod is a 16GB Nano (but I have about 70 GB of mp3 files - I'm having to pick and choose what goes on my Nano, which is fine).
    I'm sorry if this turns out to be a "duh" solution but I can't find a good answer anywhere online (I tried ITLU and that complex playlist solution from PaulMayne.com already, to no avail).
    Thank you so much
    Heidi
    heidicorinne at gmail.com

    I'm having the same problem. Also using OS X Mountain Lion (10.8.2).
    Any ideas how to fix this?

  • Check broken links in Adobe Acrobat

    Hey everybody,
    I am searching for a Plugin for Adobe Acrobat 9.0 Professional, which check brocken links in a pdf-document and create a report with all brocken links. Here I mean links like www.microsoft.com. A broken link link is www.12nmu8098.com . The report must conclud the broken link and the number of broken links in the document.
    Best regards
    hallodu1889

    Thanks for your answer. I tested this plugin but it functioned not correctly. Normaly the result of the test of www.rez2828zdhs.com must show, that it is a broken link. The report of this plugin shows that this is a correct link. Do you you know an other plugin?
    Best regard
    hallodu

Maybe you are looking for

  • Exception handling to catch the outcome of a select

    Hello, I want to use exception handling to exit me out of a function module.  I want to have one exception for all errors. For example, if this select statement does not work, how do I finish up this code to make it work. error type cx_bsx try select

  • Update 12.0.1

    itunes keep asking me for the updates 12.0.1 and after 10 intstalling is stil asking me to do the updates

  • Solaris 10 x86 DL-360 How to make additional NICS Show.

    Installing Solaris 10 x86 on a DL-360 with 4 NIC's. The server comes normally with 2 built in. The first was seen fine.. bge0 When I tried to use the 2nd one, bge1, I had to plumb it first. ifconfig bge1 plumbNo problem... Now I need to use the 3rd p

  • Brand-newbie having trouble with "paste into"

    I am teaching myself InDesign using tutorials and just tried to use the "paste into" function unsuccessfully.  I have a document with a picture of a dog (a black silhouette) and a picture of a polkadot pattern.  I selected and then cut the pattern on

  • Data Migrator  and lsmw

    hi i want to know where i can find material on data migrator and lsma? how it works?examples? thanks have a nice day