Excel Workbook - Finding Hidden Link

Jan 9, 2014

I have an excel workbook that a colleague of mine is working with. each time she opens it, she gets a message telling her that a .xls file could not be found, and a web-address specifying the file path. We went through the workbook together and looked at all of the formulas and i cannot find anywhere that this address is referenced. I also looked for any code, but there was nothing showing on any of the worksheets in the entire workbook. I broke all the links to other workbooks, used find and replace to search for the path, and to search for all the formulas. I also copied the tabs to a new workbook, but to no avail.

View 2 Replies


ADVERTISEMENT

Excel Block Hidden Cells When Paste In Another Workbook?

Feb 21, 2014

How can I block the hidden cells, so that when I want to copy/paste into another workbook, pasted data has to be all, except hidden&locked cell?

View 4 Replies View Related

Excel 2003 :: Inserted Row Shows Up As Hidden Row In Shared Workbook?

Nov 20, 2012

The other day I inserted a row in a shared workbook and then saved it. On my screen, the inserted row was visible and was the correct row height of 12.75. My goal was to insert the row so another user sitting next to me could enter information in the new row.

After I saved the workbook, and after the user sitting next to me saved her workbook, the row I inserted should have appeared exactly the same on her screen, but it did not. Instead, the inserted row showed up as a hidden row on her screen. It was there, but the row height was collapsed to the point of invisibility.

I repeated my attempt to insert a row which the other user could edit several times, but each time I got the same result. I could not make the row show up on her screen with a row height of 12.75.

Shared workbook in Microsoft Excel 2003?

View 1 Replies View Related

Link Formula To Unopened Excel Workbook

Oct 14, 2012

Im looking to insert a formula in vba code that inserts the formula from a closed workbook to the active cell. At the moment i have this as an example of what i need:

VB:
ActiveCell.FormulaR1C1 = "='[SRS 5FFBEP.xlsm]7%'!RC"

However the file part in square brackets [SRS 5FFBEP.xlsm] and tab 7% i would like to replace with a link to a cell reference that contains the file path as this needs to change and update so i would end up something like this:

VB:
ActiveCell.FormulaR1C1 = "=('" & Workbooks(Worksheets("SRS Files").Range("d29")).Worksheets("SRS Import").Range("c10") & "'!RC)

Note that cell Worksheets("SRS Files").Range("d29") contains the full file path (in text format) and Worksheets("SRS Import").Range("c10") is the link to the tab that reads the 7% (in text format).

As it stands the first set of code works fine however i need it to be able to change as previously stated. So what i need is to replace the file name and tab with cell references

View 1 Replies View Related

Excel 2010 :: Paste Link Chart From One Sheet Of Workbook To Another Sheet Of The Same Workbook

Jul 20, 2014

I've created a chart in sheet 1 in a workbook. I want to copy and paste that chart into another sheet (lets take sheet 2) of the same workbook. I am using Excel 2010 version.

Whenever, I try to copy a graph and want to do "Paste Special as Link picture". The problem I am facing as "Paste Link" option is inactive.

I am attaching the Excel for your reference.

View 2 Replies View Related

Workbook Copying (all Hidden, Unhidden, And Very Hidden)

Jun 30, 2007

im looking for a basic macro for workbook copying, all workbook(all hidden, unhidden, and very hidden) sheets.

i know how to do unhidden sheets of course however the hidden and very hidden are giving me some trouble...i need to also copy over all the macro's, buttons, and drop down box's as well..not just values.

View 4 Replies View Related

Excel 2010 :: Workbook Not Closing Correctly When Accessed Via Link On Sharepoint Site

Feb 18, 2013

I was asked to create a userform for the use of our whole team which would enable them to select a name from a dropdown list and then it would display their business contact details in the rest of the form.

I'm running Office 2010 and Windows XP server/enterprise edition (not quite sure which). After some research I've managed to use VBA code to open the userform while hiding the workbook, then when the close button is clicked it closes the user form and it's associated workbook using the code below.

Code:
' ThisWorkbook module
Private Sub Workbook_Open()
Application.Visible = False
UserForm1.Show
End Sub
'UserForm module
Private Sub CommandButton1_Click()
Unload UserForm1
ThisWorkbook.Close (False)
End Sub

This works great when the excel file is accessed directly. However when the excel file is accessed via the link on my teams Sharepoint site it doesn't. When the Userform is closed the underlying workbook and data is then displayed which then has to be closed separately.

View 2 Replies View Related

Finding And Opening Most Recent Excel Workbook In VBA

May 12, 2012

In a folder called "C:myworkbooks" I have books like

John Smith_001.xls
John Smith_002.xls
John Smith_003.xls

Using only "John Smith" as an initial search parameter in need to find and open the most recently created book.

View 7 Replies View Related

Finding Number Hidden In A Range

Dec 23, 2006

i'd like to find a value, for example, 9, in another column. in the other column it might have 9, or it could have 7-10, 8+, 9-11, etc. is there anyway i can fix my formula to account for this?

i'm using the following: =LOOKUP(9.99999999999999E+307,SEARCH(A11,J4:J32),O4:O32)

A11 is my value, aka 9
J4:J32 is my "other column"
O4:032 contains the value i want returned

it could be any value, but it's always i number i have to look up. can anyone please let me know if there's a way to do this?

View 9 Replies View Related

FInding A Value On Hidden Worksheets Using A Form

Nov 4, 2007

How would you search multiple hidden sheets named JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC Using a textbox to return a value to find on these multiple hidden sheets. The code must find Orange, Oranges Orange BLossom by typing in "Ora".

It then moves to the first value found on the first worsheet found and mekes it the active cell, asks with a msg box to find the next value and so on. This code works but it only finds the value on the sheet THAT userform was designed for in the sheet code page:

[code]
Private Sub CommandButton1_Click()
Dim ws As Worksheet
Dim MyValue, MyFindNext, FirstFound, LastFound
MyValue = Me.TextBox1
If Len(MyValue) = 0 Then Exit Sub

StartSearch:

On Error GoTo err_Trap
Cells.Find(What:=MyValue, After:=[A1], LookIn:=xlFormulas, LookAt:= _
xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:=False).Activate
FirstFound = ActiveCell.Address
MyFindNext = vbYes
Do Until MyFindNext vbYes

View 9 Replies View Related

Hidden Sheets Within An Workbook

Nov 18, 2009

I have been sent a workbook which contains a number of formulae that reference hidden worksheets (see attached JPEG).

I cannot work out how to display these sheets? The workbook does not seem to be protected, I can edit and save the visible sheet. Can anyone shed some light on how to view the referenced sheets?

View 4 Replies View Related

Cannot Edit A Macro In A Hidden Workbook. Unhide The Workbook Using The Unhide Command?

Apr 23, 2009

using Excel 2007/Vista

when I go a new edit a macro, I get the message

"Cannot edit a macro in a hidden workbook. Unhide the workbook using the unhide command"

Where do I find the relevant "unhide command"?

View 9 Replies View Related

Hidden Info When Copy A Worksheet From One Workbook To Another?

Aug 8, 2014

I need to create a new excel template for work. I was planning to copy a few worksheets from an old workbook over into the new workbook, mostly just for formatting for some graphs/tables that I would then link to the new workbook. A coworker said I cannot do this as copying from an old workbook will bring in "hidden" data that could some way impact the integrity of the new workbook and that the copied/old worksheet would FOREVER be linked to the new workbook no matter what I do. Is this true? If so, are there things I can do to remove any reliance to the old workbook.

View 1 Replies View Related

Userform Combobox Populate From Hidden Workbook

Mar 27, 2014

I'm trying to link combo box's on a user form to a hidden workbook. I placed the workbook into

C:Users[User Name]AppDataRoamingMicrosoftExcelXLSTART

Then hide the worksheet which essentially hides the workbook as only 1 sheet is present in workbook. This should make the workbook available every time a user opens Excel

Now when i initialize the form i get an error

Run-time error '1004': Method 'Range' of object'_Global failed

However when i unhide the worksheet the form runs fine. Do i need to declare the combo boxes differently than shown below The range "Tools" does exist on the hidden workbook.

View 10 Replies View Related

Delete All Hidden Worksheets When Workbook Saved

Oct 15, 2008

I have working code to unhide specific worksheets from a large number of hidden worksheets and would like to be able to delete all the hidden sheets when the workbook is saved or maybe have a button to delete all the hidden (un-needed) worksheets beside the selection drop-down menu, so that only the selected sheets are saved.

View 4 Replies View Related

Copy Hidden Sheets To New Workbook As Values

Aug 9, 2007

I have a macro that copies 2 worksheets of an open workbook "Combined Sales Tool" and saves those 2 sheets in the root of the C drive with a variable name.

I want to know how I can #1 close the newly created workbook, #2 focus back to the original workbook "Combined Sales Tool", hide the 2 sheets that were copied to the new file, then close the original workbook with (and for example without) saving

part of my code below:

Sub esummary()
Dim OutApp4 As Object
Dim OutMail4 As Object
Dim cell As Range
Dim filedoc As String
Dim intFreeRow
Dim emailatt4 As String

Sheets("Summary").Visible = True
Sheets("Email").Visible = True

Sheets( Array("Summary", "Email")).Select
Sheets("Summary").Activate
Sheets(Array("Summary", "Email")).Copy
Cells.Select
Selection.Copy
Selection.PasteSpecial Paste:=xlValues, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=False
Application.CutCopyMode = False

View 4 Replies View Related

Rows & Columns Not Hidden When Workbook Shared

Sep 20, 2007

I have a worksheet that is shared. It has hidden rows and columns. Problem is those hidden rows and columns are unhidden when someone apart from me opens the worksheet! Only way round it is to have the worksheet unshared. How do I keep the rows and columns hidden?

View 3 Replies View Related

Link To Workbook Pop Up Box

Nov 2, 2009

I have a macro that works across 2 workbooks. In the middle of the macro, a message box pops up "This workbook contains links to other data sources" and I need to select yes or no. This is because I am using a vlookup. Is there a code that I can put in to the macro to select Yes to this box and therefore not stop the macro half way through??

View 5 Replies View Related

Workbook Code Errors When Orginal Sheet Hidden Or Deleted

Oct 14, 2007

I copied the sheet and redid the format. I renamed the original dashboard sheet from count to "keep" and named the copy after the original "count" Everything still works great - until i either hide or delete the original count which is now named "keep". I get an error at the red colored line below ".publish false".

I have attached an image of the error....

View 7 Replies View Related

Hyperlink Within Workbook Without Changing Name Of Link

May 27, 2014

I have an overview worksheet that features a list of dates; I want to hyperlink the dates to the another worksheet within the workbook that represents the month. I want to do this without changing the dates in the overview sheet. For example, I have 2014-05-23, 2014-05-24,2014-05-25 in my overview sheet and I have a worksheet titled May 2014. When I try to hyperlink the dates to the May worksheet it turns the dates to #### in the overview sheet. How can I stop that from happening? 

View 13 Replies View Related

Cannot Find Link To External Workbook

Jul 31, 2014

I have a document (unfortunately I cannot attach it) in Excel 365 that each time I open it I get the usual prompt that it is calling an external link. As much as i'd love to hide the popup I need to find the link to solve to problem but I'm at a loss.

Simply breaking the links doesn't work for some reason, so I've tried updating the source to reflect the current file. No luck there.

I've searched the workbook for the name of the link in question, searching for all formula for name itself as well as variants of "[" and ".xlms".

I don't see anything in the name manager referencing that external file.

I don't recall if I copied from that particular document, I may have as it was a duplicate file. I tried looking over the cells I believe I copied from it but didn't see the reference.

I've installed Kutools and Bill Manville (MS MVP) FindLink Tool. Both of which says there is no external link.

I've looked at the compatibility checker which basically just says, yes there is an external link but give no insight on how to address.

I've tried a couple of macros, some of which crashed excel, some of which simply said that there was an external link but not how to find it. In my frustration I forgot which one that was but I'm about to try that approach again and look for that code.

external links.png

View 5 Replies View Related

Formula Contains A Link To Closed Workbook?

Jan 5, 2014

How do I get rid of the link??? My formula seems like it is not working because it has a link which I cannot find anywhere.

dog.xlsx

Screen shot 2014-01-05 at 2.38.08 AM.jpg

View 6 Replies View Related

Link To Password Protected Workbook

Jan 24, 2012

I have a master for each manager that pulls a few values from each of their employees personal sheets.

The personal sheets (about 30) are individually password protected so only the owners can open them.

This is creating a security issues as the links in the master require the passwords for each of the "source" workbooks.

Is there any way to add some code so that the passwords do not need to be entered each time?

View 9 Replies View Related

Creating Link To Another Sheet In Same Workbook

Jun 22, 2012

Project is shared, cannot use vba.

I have in A2 - A12, The names of different sheets in the workbook. I would like to create a link so when a user clicks on the cell, it will take them to the specified sheet.

Lets say cell A2 contains the text '1208', when pressed I would like it to open up the sheet 'A1208'

View 5 Replies View Related

How To Link Data From One Sheet To Another In Just One Workbook

Sep 22, 2013

So I have a set of data in my sheet 2 that I want to be connected to sheet 1. The data in sheet 2 looks like this,

NO
Reaction
H
S

1
2Fe2O3 + 3C = 4Fe + 3CO2

105690

120.21

2
Cr2O3 + C = 2Cr + 1/2CO2

218,085

59.24

while in sheet 1,Reaction No

Carbothermic Rxn

H

S

What I want to do is that when I put a reaction no (e.g 1) at the empty cell next to the label Reaction No, the data in sheet2 (i.e. Reaction, H and S) would automatically be reflected in the empty cells next to Carbothermic Rxn, H and S.

View 5 Replies View Related

Break Link To Non Existing Workbook

Aug 14, 2007

I inherited a spreadsheet that contains a link to another spreadsheet. I want to remove the link and I can not find a way to do this. I have checked under Edit/Links but there is not a delete or break links options. The linked spreadsheet does not exist.

View 4 Replies View Related

Click-able Link To Open Another Workbook

May 9, 2008

I want to reference a cell from another workbook that is a hyperlink, but I want it to stay as a hyperlink and not text. Example would be workbook1 cell A1= workbook2 cell A5(which is a hyperlink) but in workbook1 A1 shows the text of the name of the hyperlink. I want the workbook1 cell to be exactly the same hyperlink...this way when I have multiple workbooks I just need to change the master workbook.

View 7 Replies View Related

Formula Error In Hidden Sheets With Formulas Linking To A Sheet Of Same Workbook?

Nov 30, 2012

I am currently working with a hidden sheetname "hide_template" which contains formula linking to another sheetname "rawdata" of same workbook.

In this "rawdata", the contents is updated from time to time.

The problem is when I open this workbook and update the entries in "rawdata", the formulas/results in "hide_template" is not updated and invalid (ie. #N/A, #VALUE..)

This is the overview of process that Im working with:

===> open workbook ===> paste new entries on "rawdata" ==> run a macro to copy range in the "hidden_template" to paste to new sheet of same workbook

I already have a working macro to copy range from the "hidden_template" which works as follows:

===> set to visible the "hidden_template" ===> copy range from "hidden_template" ===> paste to new sheet ===> set to hidden the "hidden_template"

View 1 Replies View Related

Unable To Use Arrow Keys To Select Hidden Cells On A Protected Workbook

May 13, 2009

I have a problem with a spreadsheet I am working on, and I'm not sure if its something I've done, or whether its corrupted.

Basically, Column A is Hidden and not Locked in the protection tab of formatting. The other columns are Locked and not Hidden.

I used to be able to use the arrow keys to scroll through Column A, but this now doesn't seem to work. I can select the cells within column A with the mouse and I can scroll with the mouse and the scroll bars, but I can't move between the cells with the arrow keys, enter button or tab button.

Does anyone know what might be causing this, or is the workbook corrupt?

View 9 Replies View Related

List All Hidden Page Field Items Of All Pivot Tables In Workbook

Nov 20, 2009

I am trying to write a list of pivot table page filter pivot items to the Immediate window - but only hidden items. The code below should do the job where the active sheet is a pivot table.

However when I change the page filter pivot items being hidden, the pivot items returned by the macro don't change. It seems to assume that all pivot items are hidden when in fact it may be only one or two. It will work though for pivot row items (pvt.RowFields) and pivot column items (pvt.ColumnFields) where the user changes them.

Does the pf.HiddenItems collection work for RowFields and ColumnFields but not PageFields? If so, is there a pivot field object that reliably holds hidden pivot items residing in the page filters?

Sub ListHiddenPageFilterPivotItems()

Dim wb As Workbook
Set wb = ThisWorkbook
Dim ws As Worksheet
Set ws = wb.ActiveSheet
Dim pvt As PivotTable
Dim pf As PivotField
Dim pi As PivotItem

View 8 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved