Issue connecting tables between 2 excel 2013 workbooks.

I have 2 separate Excel documents and I want to join it together so:
-Document 1: simple document. I insert 3 columns (A,B,C)and some numbers on each colums.
-Document 2: simple document. I insert 3 columns (A,B,C)and some numbers on only 2 of them.
1.Now I want do have in column 3 of "document 2" (that has no numbers) the same number as column 3 in "document 1".
2.I do drag and drop and all is ok.(It creates a nice formula)
3.After saveing the files I decided to add a column and some numbers between column B and C in "document 1". ( now I have 4 columns and not 3)(A,B,C,D)
4.Now I go to document 2 and the value is not the one I expected to have (first value of column C that now is column D)
Why is this happening? Is it some unknown bug? Do I need to update the links between the 2 files all the time?

This only happens if you change the file while the other one is closed. In order to maintain relationships, you need to have all files open that refer to the one your are changing.
BR, Imke

Similar Messages

  • Import data from excel 2013 workbook issue,is it a bug ?

    When I use powerquery to import data from excel 2013 workbook An unexpected error occurred.Other editions no problem.

    I‘m sure this is a bug.I'm option in default language set to English.Saved the file and use powerquery import it.Excle worked fine.
    I'm option in default language set to simple chinese.Saved the file and use powerquery import it.An error occurred.

  • Error Message: "Excel cannot complete this task with available resources" when creating pivot table with Excel 2013

    Hi, 
    One of our users encountered this problem with Excel 2013 while creating pivot tables, particularly with large files. We tried to modify Virtual Memory
    of the pc but error still persist. Why does this happen and how can we resolve this? Thanks.
    Another error message encountered by the user, this time when opening large files. The files she tried to open are working fine in 2010. But when opened in 2013, it prompted : "There
    isn't enough memory to complete this action. Try using less data or closing other applications."

    Hi,
    In regarding of the issue, please provide us more information to assist you better.
    Did your user using the Excel 2013 and Excel 2010 with same PC? If not, please let me know the both of the 2 PCs' hardware list/Windows operation system info.
    Did you using Excel 2013 32bit version and Excel 2010 64bit version?
    General speaking, this issue usually occurs with Office 2013 32 bit version. It has a limitation of 2Gb of memory that can be used by its process. And the 64-bit Excel can handle larger workbooks.
    Thus, if your user using 32bit Excel, I recommend try 64bit Excel instead.
    Here is a similar issue, we also could try it:
    http://answers.microsoft.com/en-us/office/forum/office_2007-excel/excel-cannot-complete-the-task-with-available/d31b1822-ebde-4c9b-8d11-e54bb652847d
    If you have any update, please feel free let us know.
    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.

  • Converting fromula in pivot tables in EXcel 2013

    I'm looking to convert to Formulas in Excel 2013. The Help function says that the functionality resides in the pivot table tools-> Analyze->in the Calculations group> click OLAP tools > click convert to formula
    This is grayed out in my worksheet and I am clicking on a cell within the Pivot table
    The pivot table source is an other excel worksheet in the same workbook that is not OLAP data (I don't even really know what that is)
    Is there something i need to do to ungray the OLAP tools icon? Or is this no longer possible. This functionality in 2007 was not tied to OLAP tools
    Thanks

    Hi,
    As far as I know, only the Online Analytical Processing (OLAP) PivotTable report by using converting formula.
    The data source must be imported from "Data tab>From other source>From Analysis Services" and then we could use the converting formula.
    http://office.microsoft.com/en-us/excel-help/convert-pivottable-cells-to-worksheet-formulas-HA010096303.aspx
    Regards,
    George Zhao
    TechNet Community Support

  • How to build semantic model table from excel 2013 budget table?

    I have an excel 2013 budget table produced by finance department. The title of the table is <<Year 2015 Resource Budget>> with columns such as (Item, Budget). There is line of business app which tracks daily usage. It is SQL database which
    I can access. The SQL table has columns such as Date, Item, Usage. I am asked to produce some PowerView reports using DAX.
    I am thinking about using Excel 2013 PowerPivot. The following is the step of my plan.
    Add excel 2013 Budget table to PowerPivot
    Transform the budget table using DAX to a new table with includes date. For each item budget, the value can be evenly divided by 365. I don't know if this is possible with DAX and need advice from you
    Import daily usage from SQL database into PowerPivot
    Merge the imported SQL daily usage table with the transformed budget table with daily breakdown.  The output table has 4 columns (Date, Item, ValueType, Value). The ValueType can be either Budget and Usage. (I also do not know if it is possible to
    use DAX to merge two PowerPivot table into anther table with added new columns. If it is possible, I would love to hear from you on how to do this)
    Finally, I can produce BI reports based on the newly merged table
    Update: Here are more sample data.
    Input Budget
    <<Year 2014 Resource Budget>>
    Item
    Budge
    Pen
    365
    Paper
    1095
    <<Year 2015 Resource Budget>>
    Item
    Budge
    Pen
    1825
    Paper
    1095
    Bag
    365
    I am thinking to expand the Budget as follow but I don't how to use DAX to do it
    Date
    Item
    Budge
    31/12/2014
    Pen
    1
    31/12/2014
    Paper
    3
    1/01/2015
    Pen
    5
    1/01/2015
    Paper
    3
    1/01/2015
    Bag
    1
    Here is the Daily Usage table
    Date
    Item
    Usage
    31/12/2014
    Paper
    2
    31/12/2014
    Pen
    6
    1/01/2015
    Paper
    10
    1/01/2015
    Pen
    2
    1/01/2015
    Bag
    1
    I was thinking to merge the expanded Daily Budget and Daily Usage as follow for BI reporting. This was my thinking, may not a good solution using DAX
    Date
    Item
    Type
    Value
    31/12/2014
    Paper
    Usage
    2
    31/12/2014
    Pen
    Usage
    6
    1/01/2015
    Paper
    Usage
    10
    1/01/2015
    Pen
    Usage
    2
    1/01/2015
    Bag
    Usage
    1
    31/12/2014
    Pen
    Budget
    1
    31/12/2014
    Paper
    Budget
    3
    1/01/2015
    Pen
    Budget
    5
    1/01/2015
    Paper
    Budget
    3
    1/01/2015
    Bag
    Budget
    1
    Off course, I need to build dimension tables for Date, Item, Item Category, and Value Type
    jl

    Hi JL,
    Just for consideration, I'd:
    Keep budget and actuals separately - create Fact_Y2015Budget and Fact_Actuals;
    Hook both tables to same dimesnions (time; if there is no time for budget, assign it all to the first day of your 2015; line item etc. - whatever you are asked to report about)
    If you can, pull usage not only for 2015, but for prior year(s) too
    Create measures like [Usage Budget Atteinment YTD]:=TotalYTD(SUM([Usage]),your_time)/([Budget]*PriorYear(TotaYTD(SUM([Usage]),you_time)/CALCULATE(SUM([Usage]),DATESBETWEEN(your_first_day_of_year2015,your_last_day_of_2015))))
    The calculation in #4 compares actual ("usage") to portion of budget that would have been used up if 2015 had the same seasonality as 2014... If you couldmshare specific sample, I'd buuild exact formula...
    Daniel

  • Issues with Userforms in Excel 2013

    Hi
    I have some issues with Userforms and Comboboxes created in earlier versions of Excel (2010). The VBA Code get stuck when I try to use the userforms in Excel 2013.
    It is either the addItem function or the Userfrom.Show function which fails.
    I have Installed a old version of excel (2007) on the same computer and when I run the same code on in this version the code works perfect. I have also tried the code on several other computers and got the same answer - Does not work in 2013 but works perfect
    in previous versions.  
    Is there a known bug in this issue??
    With best regads
    Joakim

    Hi,
    This is the forum to discuss questions and feedback for Microsoft Excel, I'll move your question to the MSDN forum for Excel
    http://social.msdn.microsoft.com/Forums/en-US/home?forum=exceldev&filter=alltypes&sort=lastpostdesc
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. Thank you for your understanding.
    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.
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Using an existing connection in the Excel 2013 file in Power Query

    Hi,
    I've created an Excel workbook and a SQL Server data connection in this workbook.
    When I open Power Query I cannot to use this created data connection.
    In general, inside Power Query can I use a data connection created in the original Excel workbook?
    Many thanks

    Following on from Ehren's advice please find the following screen shot and link; -
    https://support.office.com/en-gb/article/Connect-to-a-SQL-Server-database-Power-Query-e5004318-0f2e-46a3-8b15-1559aa3c04db?ui=en-US&rs=en-GB&ad=GB
    Kieran Patrick Wood http://www.innovativebusinessintelligence.com http://uk.linkedin.com/in/kieranpatrickwood http://kieranwood.wordpress.com/

  • Are there any known issues with speed between excel 2003 and 2010 when using WAAS?

    Request asked by customer. Thought I would run this by the forum first.
    Can you please raise a ticket with Cisco TAC asking why Excel files in 97-2003 file format cannot be fully optimized when compared to the same file being saved in the latest file format?
    When using the latest file format, the user experience is amazing and up to 100x faster to open and save files. Our testing has identified an issue with the older file format.

    I deployed WAAS about 3 years ago. Part of the deployment was before and after testing. When the users used Office 2010 the results were good. When they used Office 2003 the results were terrible. Some files took minutes to open, some never opened. Solution was to upgrade to O2010.
    Hope this helps.

  • Excel 2013 connection wizard cannot connect to SSAS cubes

    When trying to connect to an SSAS cube from connection wizard in Excel 2013, the error message "Unable to connect to data source. Reason: Unable to locate database server.
    Steps.
    1. In Excel 2013 (Office Standard), from Data ribbon, select From Other Sources -> From Analysis Service
    2. Enter server name and click next
    3. The error meesage appears.
    However, when choosing an exsiting connection to the same server/cube using an odc file, the connection succeeds. The server name in the connection property is exactly the same as what entered in step 2.
    Also, using SQL Server Management Studio to connect the server also succeeds.

    Hi Pichai,
    You are trying to connect to SQL Server Analysis Services database in EXCEL 2013 without success, right?
    In your scenario, what the version of your SQL Server? Office 2007 installs data providers from SQL Server 2005. Office 2010 installs data providers from SQL Server 2008. Office 2013 installs data providers from SQL Server 2012. If you are using multiple
    versions of Office or SQL Server, and connections or feature availability are not what you expect, you might need to install a newer version of the data providers.
    Reference
    http://msdn.microsoft.com/en-IN/library/dn141152.aspx
    Regards,
    Charlie Liao
    If you have any feedback on our support, please click
    here.
    Charlie Liao
    TechNet Community Support

  • Problem connecting PowerPivot's (Office 2013) Data Model deployed on SharePoint 2013 to data source.

    Hello:
    Our configurations is as follow :  SharePoint 2013 is on Server A;  SQL Server Analysis server (SQL 2014) is on DB Server B;   
    SharePoint databases (sp_ ...) and our Data Mart (SQL 2014) are on server B. All servers runs Windows 2012 OS.
    On my desktop I built a simple Excel 2013 workbook with PowerPivot Data Model that imported several tables from our Data Mart (server B above). Then created a Power View report. Locally everything works fine. 
    But when I uploaded this workbook to our SharePoint PowerPivot gallery and was trying to refresh data, I got the connection error: It’s very long but the ErrorCode is “rsCannotRetriveModel”. The end of the error message is:
    'TemporaryDataSource'.</Message><MoreInformation><Source>Microsoft.AnalysisServices.SPClient</Source>
    <Message>Call to Excel Services returned an error.</Message>
    <MoreInformation><Source></Source><Message>We were unable to refresh one or more data connections in this workbook.
    The following connections failed to refresh:ThisWorkbookDataModel</Message>
    <MoreInformation><Source>Microsoft.Office.Excel.Server.WebServices</Source><Message>
    We were unable to refresh one or more data connections in this workbook. The following connections failed to refresh:ThisWorkbookDataModel</Message></MoreInformation>
    </MoreInformation></MoreInformation></MoreInformation></MoreInformation><Warnings xmlns="http://www.microsoft.com/sql/reportingservices" /></detail>
    Our Excel Services on the SharePoint work fine and refresh data on different excel workbooks (with no Data Model) just fine.  We are using an unattended account for Excel Services to connect from SharePoint server to our databases. Found a few references
    on the topic, tried them but with no luck.
    Please advise!
    Regards
    -Jeff
    Jeff Gorvits

    Hi Jeff,
    Firstly, I need to confirm whether you are refreshing Data connection in browser, since Data Refresh is not supported in Office Web Apps. Please refer more information in this article:
    http://blogs.technet.com/b/excel_services__powerpivot_for_sharepoint_support_blog/archive/2013/01/31/powerpivot-for-sharepoint-browser-refresh-fails-data-refresh-not-supported-in-office-web-apps.aspx
    From the error "Call to Excel Services returned an error", please verify the location of the
    data source, for example an Excel workbook, is registered as a trusted location with Excel Services:
    https://technet.microsoft.com/en-us/library/jj219699(v=office.15).aspx
    Since you are using unattended account for Excel Services to connect from SP to databases, I wonder if the issue occurs to unattended referesh, if so, please refer to:
    http://social.technet.microsoft.com/wiki/contents/articles/3870.troubleshoot-powerpivot-data-refresh.aspx#Problems_using_the_Unattended_data_refresh_account
    Regards,
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected] .
    Rebecca Tu
    TechNet Community Support

  • Excel 2013 BeforeRightClick Event fails on Windows 8.1 Tablet (it's an Excel 2013 tablet touch screen interface bug)

    I have developed customized table context menus in an Excel 2013 workbook on my Laptop. They work just fine on my laptop and my work desktop. But when I try to run them on my tablet PC the Worksheet_BeforeRightClick event in Excel 2013 never fires. Other
    worksheet events appear to work okay. I have fully reinstalled Office 2013 Pro and that does not make any difference.
    I have read other comments regarding this same problem going back to 2013, but have never seen Microsoft respond to this issue. Nor have I been able to find a resolution. Has anyone else run into this and found a solution?
    Additional Discoveries: Testing on my tablet shows that adding one custom CommandBarButton to either the top or the bottom of the default "List Range Popup" context menu causes the Worksheet_BeforeRightClick event to fail.  The basic context
    menu commands still show up, but the default dropdown button for additional context menu commands disappears. The event is perhaps firing, but any customized code for the context menu is not being handled properly by Excel. This does appear to be a bug and
    not a question of coding error. Perhaps someone else with a tablet PC running WIndows 8.1 could test this.
    Based on comments
    here this bug was introduced in Excel 2013 because others find the problem does not exist when using Excel 2010 on a tablet PC. Note that all the commenters on the linked thread that are experiencing this problem are using tablet PCs.
    Update 3-13-15: I stand corrected. The Worksheet_BeforeRightClick does work on Excel 2013 Windows 8.1 tablets. I happen to own an Asus VivoTab Note 8, which comes with a Wacom stylus. If I use the Wacom sylus to right click on an Excel 2013 worksheet cell,
    the Worksheet_BeforeRightClick event fires and modified context menu code runs just fine. But the code will not run if one uses their finger to right click a worksheet cell. This explains why this problem only shows up on tablet PCs. So the "bug"
    introduced in Excel 2013 is a general user touch screen interface bug and not an Excel events programming bug.
    Update 3-21-15: Switched to a  Toshiba Protege laptop with touch screen. Same issue with finger touch screen interface on the Toshiba touch screen as with the Asus VivoTab touch screen.
    Laptop: Toshiba Protege (with touch screen), Windows 8.1 64bit and MSOffice 2013 Pro 32bit
    Tablet: Asus VivoTab Note 8, Windows 8.1 32bit and MSOffice 2013 Pro 32 bit
    Desktop: Generic, Windows 7 64bit and MSOffice 2013 Pro 64bit
    phillfri

    Hello Phil,
    Command bars were deprecated and shouldn't be used any longer. Instead, you need to use the Fluent UI (aka Ribbon UI) instead. You can read more about the new UI in the following series of articles in MSDN:
    Customizing Context Menus in Office 2010
    Customizing the 2007 Office Fluent Ribbon for Developers (Part 1 of 3)
    Customizing the 2007 Office Fluent Ribbon for Developers (Part 2 of 3)
    Customizing the 2007 Office Fluent Ribbon for Developers (Part 3 of 3)
    As a workaround you can add a custom control to the context
    menu with the getEnabled or getVisible callback which will be invoked before the context menu is shown.

  • Cannot insert object error using Power View in Excel 2013

    I created a short table in Excel 2013, positioned the cursor in the table and clicked Inset/Power View Report. I get a status window saying Excel is opening a Power View sheet but then I get a Power View error: Cannot Insert Object. I am able to insert new
    tabs in the workbook. When I try the insert again, I just get the Power View error. I looked at other threads with similar issues and did the following:
    Made the Formula bar visible - no change
    Tried to repair Office 2013 but that option is not available when I right click on the program in the Control Panel
    De-installed Silverlight - Tried to insert Power View Report. A Power View tab was created with the Power View picture and Power View ribbon. Got the message to install Silverlight and Reload. Installed Silverlight hit Reload and the Power View tab didn't
    change. Hit Power View Report and got the Cannot Insert Object error message again.
    Any help is appreciated.

    Hi,
    Did you use PowerView first time? I notice you had found a similar thread and tested the solutions.
    PowerView is an add-in in Excel2013, We must make sure that you check some option in the trust center and Add-in center.
    http://blogs.office.com/b/microsoft-excel/archive/2012/10/04/intro-to-power-view-for-excel-2013.aspx
    Location1: Excel Options>Add-in>Solver Add-in enable
    Location2: Excel Options> Trust Center> Add-in
    Then you said that you couldn’t repair the Excel 2013, please refer to the following link:
    http://office.microsoft.com/en-gb/outlook-help/repair-office-programs-HA010357402.aspx
    At last, we may test it in clean boot, please refer to the following link:
    http://support.microsoft.com/kb/929135
    Regards,
    George Zhao
    TechNet Community Support

  • WebDAV: Excel 2013 truncates the encoded URL at # (%23)

    (originally posted in Open Spec forum, but was asked to repost here)
    We encountered a problem  on our existing WebDAV server with Office 2013. When a file name contains a number sign (aka hash, aka pound sign), Excel truncates the URL at that sign. Note that the URL is properly encoded, i.e. "#" is replaced
    with %23.
    Word and Powerpoint behave properly and have no issues opening files via URLs containing %23. E.g, for the URL http://server/otcsdav/nodes/1500722/doc1%23end.docx, Word first calls OPTIONS on  otcsdav/nodes/1500722, then HEAD otcsdav/nodes/1500722/doc1%23end.docx,
    then eventually a GET.  The file opens successfully as "doc1#end.docx", gets locked, edited, updated and unlocked.
    Excel, however, truncates the URL (http://server/otcsdav/nodes/1500722/excel1%23end.xls), and sends HEAD for /otcsdav/nodes/1500722/excel1, which, of course, returns 404.
    Funny enough, double-encoding (i.e. to %2523) seems to work for Excel, but breaks everything else. I.e, with url = "otcsdav/nodes/1500722/excel1%2523end.xls" Excel sends HEAD for "/otcsdav/nodes/1500722/excel1%23end.xls", while Word will
    send HEAD for the URL verbatim, i.e. "/otcsdav/nodes/1500722/doc1%2523end.docx"
    Does anyone know it it's an Excel bug? is there anything we can do to circumvent this?
    P.S.1 Excel 2010 works just fine, the issue first appeared in Excel 2013.
    P.S.2 I know that Sharepoint doesn't support "#" in filenames. Our server is NOT Sharepoint, and "#" doesn't seem to be disallowed in WebDAV protocol.

    Hi Maria,
    This forum is used to discuss questions about Excel for developers, most probably the issue is related to code.
    According to your description, it seems the issue doesn't meet the topic. It might be related to how the server analysis the URL and find the corresponding file.
    I have moved this thread to "Where is the forum for" forum.
    Thanks for your understanding.
    Regards,
    George.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Cannot able to save Excel 2013 file in Sharepoint 2007 document library

    Dear All,
    We have SharePoint 2007 intranet portal where in we have teamplace created for internal users to collaborate on documents.
    Now we are having issues when using uploads Excel 2013 or Excel 2010 file on document library and try to edit the document.
    Sometimes it doesn't allow to check out the file it say someone already checked out ..but when I try in my laptop its OK.
    And some times when user opens the file it opens as non editable file and it does not take any changes.
    Pls advise whether there is issue with SharePoint 2007 document library and Office Excel 2010,2013 files.
    -- Regards Sandeep

    The lock can apply in two places.  Are you seeing the message in your browser or does it arise within Excel itself?
    Steven Andrews
    SharePoint Business Analyst: LiveNation Entertainment
    Blog: baron72.wordpress.com
    Twitter: Follow @backpackerd00d
    My Wiki Articles:
    CodePlex Corner Series
    Please remember to mark your question as "answered" if this solves (or helps) your problem.

  • Excel 2013 (pro plus) extermely slow with sheets with more than 100 checkboxes

    I have a customer with Excel 2013 (pro plus).
    They use sheets with more than 100 checkboxes in it.
    The sheet is extremly slow to display. When a user starts scrolling down, the checkboxes appear very slowly, one by one.
    It happens with all users, on both x86 and 64bits Windows 8 PC's and Office clients (32b & 64b).
    Anyone any idea?

    Hi R.Nieraeth,
    Could you please let us know what exactly these checkbox was used for ? Any formulas depend on these checkbox? Or any VBA code in this excel file? If so, you may need to check your formulas or the VBA code.
    In addition,does this issue happen only on excel 2013? You can try to disable hardware graphics acceleration: Click
    File, and then click Options. In the Advanced group, click to select the
    Disable hardware graphics acceleration check box. Click ok.
    Also please check if the following thread is helpful:
    http://social.technet.microsoft.com/Forums/en-US/a9a257fa-ce8b-4399-860c-563022b8714f/checkbox-bug-in-excel-2010-slow-response?forum=excel

Maybe you are looking for