Slow query performance in excel 2007 vs excel 2003

Hi,
Some of our clients recently did an upgrade towards BI 7.0 and also upgraded towards excel 2007.
They experience lots of performance problems when using the Bex analyser in excel 2007.
Refreshing queries, using 'simple' workbooks works till 10 times slower than before using excel 2003.
Has anyons experienced the same?
Any tips/tricks to solve that problem?
With regards,
Tom.

Hello all,
1) Please set the following parameters to X in transaction
    RS_FRONTEND_INIT and check the issue.
Parameters to be set are
ANA_USE_SIDGRIDDELTA
ANA_USE_SIDGRIDMASS
ANA_SINGLEDPREFRESH
ANA_CACHE_WORKBOOK
ANA_USE_OPTIMIZE_STG
ANA_USE_TABLE
2) Also refer to below KBA link which would help to resolve the issue.
   1570478 BW Report in Excel 2007 or Excel 2010 takes much more time than
3) In the workbook properties please set the flag
     - Use Compression When Saving Workbook
4)  If you are working with big hierarchies please try to improve
performance with following setting directly in AnalysisGrid:
   - Properties of Analysis Grid - Dispay Hierarchy Icons
   - switch to "+/-"
Regards,
Arvind

Similar Messages

  • Excel 2007 to Excel 2010 - external references no longer work for UNC paths

    Hi all,
              a client has recently moved from Excel 2007 to Excel 2010 - and found that some spread sheets - which have references to other spread sheets, no longer update data correctly. The workbooks continue to
    work fine with Excel 2007.
    The locations are listed in trusted locations from GP - and if we copy the documents locally and update the links, it all works fine.
    Excel 2010 have all patches installed as of March 2014 and the spread sheets have also been tested with Excel 2013 (again, with all current patches) and exhibit the same issues.
    Changing the unc path to a drive letter also does not resolve the issue.
    An example of the lookup is
    =IF(ISNA(VLOOKUP([@[ Cust No.]],\\server\share\February.2014.xlsx!Table1[#All],9,0)),0,VLOOKUP([@[ Cust No.]],
    \\server\share\February.2014.xlsx!Table1[#All],9,0))

    Maybe you could try to use the range reference instead of Table in excel 2010.
    e.g.
    =VLOOKUP(H5,'\\server name\share folder\[2014.xlsx]Sheet1'!$H$15:$M$25,2,0)
    If it doesn't help ,on the Data tab, click Edit Links in the Connections group. And then click 'Check Status' .
    What's the status of this link? If it is 'Error: Worksheet not found' . you can try to click the 'open source' to update the data.
    Wind Zhang
    TechNet Community Support

  • Problem opening BEx Analyzer Workbook (saved in Excel 2007) in Excel 2003!!

    Dear all:
    I know there are threads about this issue and numerous support tickets have been provided, but we still can't get any Excel 2007 Query to be opened by Excel 2003.
    I have tried to save Excel 2007 BEx Analyzer Query into 97-2003 XLS format. But when we reopened (by both Excel 03 and 07), it prompted the warning messages and broke down the query workbook into several sheets with scrambled data. What am I missing here...? According to the support ticket, it seemed pretty straightforward just by saving the format to 2003 XLS, but in reality it just doesn't work as "advertised"
    Thank you...!!!
    Brian

    I have the solution for this.
    It works to my environment.
    Follow the steps :
    1. you must open the xlsx workbook from Bex Analyzer.
    2. Save As workbook locally to your PC for excel 97-2003
         (Not "save as" from bex Toolbar but from      excel)
    3. Now save that workbook with Save As->Workbook from Bex Toolbar into your BI database.
    Now go to detail properties of your workbook and there you can see the format xls for your workbook.
    Good Luck

  • Excel 2007 and Excel 2003 format

    Hi all,
    we have some problems with Excel file format on BPC 7.5NW SP06:
    1- We save input schedules or reports woth Excel 2007 file format. Then when we try to open these report they are corrupted (we click on "Open" and nothing happens). We can download the report from UJFS. The xltx file is corrupted. We can change th file extension to xls. Then we can open the report again.
    2- Is it possible to define the default extension when we save input schedules and reports? By default xltx is selected. We want to have xlt selected by default.
    thanks for your help,
    Romuald

    Hello,
    First you can try checking if you have configured your apset to work with xltx.
    1. Open BPC web admin and select AppSet Parameters
    2. Check ALLOW_EXTENSIONS and DEFAULT_EXTENSIONS if you have xltx there
    3. If not, add and click on update
    If this continues to happen, check note  "1579344 - Office 2007 extensions not loading in BPC 7.5 SP6 for NW". This can be a program error, but note that it only happens for some templates.
    Hope it helps
    Debora

  • Information of Print Area is missing in VB6 Addin of version Excel 2007 and Excel 2010

    Hallo, 
    I have a problem with my old VB 6 COM Addin. My document has Print Area, but when I use my addin to open this document. The information of print area is lost. 
    This problem takes place only in the following situations.
    If the PrintArea is set in Excel 2007 and 2010, it will be missing. But in Excel 2003 without problem.
    From the code, the  ".ActiveSheet.PageSetup.printArea" is always empty, although when the print area is configurate in Excel 2007 and 2010
    What is the possible reason of this problem?
    Thanks very much.

    There are several things I don't follow in the details you gave
    "I click an excel document in the third-part program and Excel 2007 will be open automatically"
    - Describe the 3rd party program you open the workbook in if not Excel"
    - What do you mean by "click and Excel document", what do you click and where is the document
    - Why click on an Excel document (workbook, worksheet something else?) to get a 3rd party app to automate Excel, then does some other workbook load?
    It's very confusing!
    Did you try the code in VBA in the instance of the workbook whose sheet you want to return the Print Area
    Re: Excel Object Library is 9.0
    Did you set a reference to XL-9 in the test app with my code then transfer to a different system with 2007?
    However, a ref to xl-9 shouldn't be a problem if the code compiled with that ref. If the app/dll is transferred to a different system it will pick up the Excel GUID in that system, which is exactly the same for all versions since Excel97. The only time it
    would be an issue is if code compiled with a new object model is not supported when used with an older Excel object model.
    The fact my code appears to work without error returning the message "Print Area not defined" suggests it is referring to a different workbook, ie one in which the Print-Area has not been defined. Double check which workbook it is referring to,
    eg
    Private Sub cbPrintArea_Click(ByVal Ctrl As Office.CommandBarButton, _
    CancelDefault As Boolean)
    Dim ws As Excel.Worksheet
    Dim s As String, s2 As String
    On Error Resume Next
    s = xlApp.Caption
    If Err.Number Then
    MsgBox "xlApp error " & vbCr & Err.Description
    Exit Sub
    End If
    Set ws = xlApp.ActiveSheet
    s2 = ws.Parent.Name & vbCr & _
    ws.Name & vbCr & _
    ws.Range("A1").Value & vbCr
    If Err.Number > 0 Then
    MsgBox "failed to reference ActiveSheet"
    Else
    s = ws.PageSetup.PrintArea
    If Err.Number Then
    MsgBox Err.Description
    Else
    If Len(s) = 0 Then s = "Print Area not defined"
    MsgBox s2 & vbCr & s
    End If
    End If
    End Sub
    This should confirm the workbook name, activesheet name and value in A1 (before running maybe add the current time in A1 with ctrl-shift-;  in the same workbook as the print-area has been defined)
    Peter Thornton

  • Slow Query Performance During Process Of SSAS Tabular

    As part of My SSAS Tabular Process Script Task in a SSIS Package, I read all new rows from the database and insert them to Tabular database using Process Add. The process works fine but for the duration of the Process Add, user queries to my Tabular model
    becomes very slow. 
    Is there a way to prevent the impact of Process Add on user queries? Users need near real time queries.
    I am using SQL Server 2012 SP2.
    Thanks

    Hi AL.M,
    According to your description, when you query the tabular during Process Add, the performance is slow. Right?
    In Analysis Services, it's not supported to make a MDX/DAX query ignore the Process Add of the tabular. it will always query the updated tabular. In this scenario, if you really need good query performance, I suggest you create two tabular.
    One is for end users to get data, the other one is used for update(full process). After the Process is done, let the users query the updated tabular.
    If you have any question, please feel free to ask.
    Regards,
    Simon Hou
    TechNet Community Support

  • Slow Query Performance

    Hi BI expert,
    I have got a query and it's written basing on sales order line cube. This cube holds about 60,000 records at the moment. A selection secreen has also been designed for this for example; creation date, brand and sku. If the users specify one of the selection criteria, it takes about 45 minute to bring back 20,000 records but if they do not specify anything on the selection screen, it takes hours and hours to fetch records from the cube. In my process chain, it deletes the index, loads data and creates index everyday.
    Would you be kindly suggest me as to why it's taking so long time to run the query please?
    Thanks.

    Hi
    go for Aggregates
    Most of the result sets of reporting and analysis processes consist of aggregated data. An aggregate is a redundantly stored, usually aggregated view on a specific InfoCube. Without aggregates, the OLAP engine would have to read all relevant records at the lowest level stored in the InfoCubeu2014which obviously takes some time for
    large InfoCubes. Aggregates allow you to physically store frequently used aggregated result sets in relational or multidimensional databases. Aggregates stored in relational databases essentially use the same data model as used for storing InfoCubes. Aggregates stored in multidimensional databases (Microsoft SQL Server 2000) have been introduced with SAP BW 3.0.
    Aggregates are still the most powerful means SAP BW provides to optimize the performance of reporting and analysis processes. Not only can SAP BW automatically take care of updating aggregates whenever necessary (upload of master or transaction data), it also automatically determines the most efficient aggregate available at query execution time.
    mahesh

  • Database upgrade - slow query performance

    Hi,
    recently we have upgraded our 8i database to an 10g database.
    While we was testing our forms application against the new
    10g database there was a very slow sql-statements which runs
    several minutes but it runs against the 8i database within seconds.
    With sqlplus it runs sometimes fast, sometimes slow (see execution plan below)
    in 10g.
    The sql-statement in detail:
    SELECT name1, vornam, aboid, liefstat
    FROM aktuellerabosatz
    WHERE aboid = evitadba.get_evitaid ('0000002100')
    "aktuellerabosatz" is a view on a table with about 3.000.000 records.
    The function get_evitaid gets only the substring of the last 4 diggits of the whole
    number.
    execution plan with slow responce time:
    12:05:31 EVITADBA-TSUN>SELECT name1, vornam, aboid, liefstat
    12:05:35 2 FROM aktuellerabosatz
    12:05:35 3 WHERE aboid = evitadba.get_evitaid ('0000002100');
    NAME1 VORNAM ABOID L
    RETHMANN ENTSORGUNGSWIRTSCHAFT 2100 A
    1 Zeile wurde ausgewählt.
    Abgelaufen: 00:00:55.07
    Ausführungsplan
    0 SELECT STATEMENT Optimizer=ALL_ROWS (Cost=4 Card=1 Bytes=38)
    1 0 TABLE ACCESS (BY INDEX ROWID) OF 'EVTABO' (TABLE) (Cost=4
    Card=1 Bytes=38)
    2 1 INDEX (RANGE SCAN) OF 'EVIABO22' (INDEX (UNIQUE)) (Cost=
    3 Card=1)
    Statistiken
    100 recursive calls
    0 db block gets
    121353 consistent gets
    121285 physical reads
    0 redo size
    613 bytes sent via SQL*Net to client
    500 bytes received via SQL*Net from client
    2 SQL*Net roundtrips to/from client
    0 sorts (memory)
    0 sorts (disk)
    1 rows processed
    execution plan with fast response time:
    12:06:43 EVITADBA-TSUN>SELECT name1, vornam, aboid, liefstat
    12:06:58 2 FROM aktuellerabosatz
    12:06:58 3 WHERE aboid = evitadba.get_evitaid ('0000002100');
    NAME1 VORNAM ABOID L
    RETHMANN ENTSORGUNGSWIRTSCHAFT 2100 A
    1 Zeile wurde ausgewählt.
    Abgelaufen: 00:00:00.00
    Ausführungsplan
    0 SELECT STATEMENT Optimizer=CHOOSE (Cost=4 Card=1 Bytes=38)
    1 0 TABLE ACCESS (BY INDEX ROWID) OF 'EVTABO' (TABLE) (Cost=4
    Card=1 Bytes=38)
    2 1 INDEX (RANGE SCAN) OF 'EVIABO22' (INDEX (UNIQUE)) (Cost=
    3 Card=1)
    Statistiken
    110 recursive calls
    8 db block gets
    49 consistent gets
    0 physical reads
    0 redo size
    613 bytes sent via SQL*Net to client
    500 bytes received via SQL*Net from client
    2 SQL*Net roundtrips to/from client
    0 sorts (memory)
    0 sorts (disk)
    1 rows processed
    In the fast response the consistent gets and physical reads are very small
    but in the another time very high what (it seems) results in the slow performance.
    What could be the reasons?
    kind regards
    Marco

    The two execution plans above are both 10g-sqlsessions on the same database with the same user. We gather statistics for the database with the dbms_stats package. Normally we have the all_rows option. The confusing thing is sometimes the sql-statement runs fas sometimes slow in a sqlplus session with the same executin plan only the physical gets, constent reads are extreme different.
    If we rewrite the sql-statement to use the table evtabo with the an additional
    where clause (which is from the view) instead of using the view then it runs fast:
    14:24:04 H00ZRETH-TSUN>SELECT name1, vornam, aboid, liefstat
    14:24:14 2 FROM aktuellerabosatz
    14:24:14 3 WHERE aboid = evitadba.get_evitaid ('0000000246');
    Es wurden keine Zeilen ausgewählt
    Abgelaufen: 00:00:43.07
    Ausführungsplan
    0 SELECT STATEMENT Optimizer=ALL_ROWS (Cost=27315 Card=1204986
    Bytes=59044314)
    1 0 VIEW OF 'EVTABO_V1' (VIEW) (Cost=27315 Card=1204986 Bytes=
    59044314)
    2 1 TABLE ACCESS (FULL) OF 'EVTABO' (TABLE) (Cost=27315 Card
    =1204986 Bytes=45789468)
    14:24:59 H00ZRETH-TSUN>SELECT name1, vornam, aboid, liefstat
    14:25:26 2 FROM evtabo
    14:25:26 3 WHERE aboid = evitadba.get_evitaid ('0000002100')
    14:25:26 4 and gueltab <= TRUNC(sysdate) AND (gueltbs >=TRUNC(SYSDATE) OR gueltbs IS NULL);
    NAME1 VORNAM ABOID L
    RETHMANN ENTSORGUNGSWIRTSCHAFT 2100 A
    1 Zeile wurde ausgewählt.
    Abgelaufen: 00:00:00.00
    Ausführungsplan
    0 SELECT STATEMENT Optimizer=ALL_ROWS (Cost=4 Card=1 Bytes=38)
    1 0 TABLE ACCESS (BY INDEX ROWID) OF 'EVTABO' (TABLE) (Cost=4
    Card=1 Bytes=38)
    2 1 INDEX (RANGE SCAN) OF 'EVIABO22' (INDEX (UNIQUE)) (Cost=
    3 Card=1)
    What could be the reason for the different performance in 8i and 10g?
    Thanks
    Marco

  • Slow query performance in Oracle 10.2.0.3

    Hi,
    We have Oracle 10.2.0.3 installed on RHEL 5(64 bit).We have two queries out of which one is a query using select while other query is using a insert.First we executed insert query which inserts 10000 rows in a table and then select query on this table.This works fine in one thread.But when we do samething in 10 threads, at that time INSERT is fine but select is taking very long time for 10 threads.Any bug related to parallel execution of queries for SELECT in 10.2.0.3?Any suggestion??
    Thanks in advance.
    Regards,
    RJ.

    Justin,
    We have a same queries for INSERT and Select in 10 manual sessions outof which select query is taking more time to execute.Please refer to WAITs given below.No there is no bottleneck as far as hardware is concerned because we tested it on different configuration of servers.
    Event                    Waits            Time(s)          Avg Wait(ms)     % Total Call Time     Wait Class
    CPU time                52                                    93.2     
    latch: cache buffers chains     45,542          6          0               10.7               Concurrency
    log file parallel write          2,107          3          1               5.2               System I/O
    log file sync               805          2          2               3.5               Commit
    latch: session allocation     5,116          1          0               2.6               Other Wait Events
    •     s - second
    •     cs - centisecond - 100th of a second
    •     ms - millisecond - 1000th of a second
    •     us - microsecond - 1000000th of a second
    •     ordered by wait time desc, waits desc (idle events last)
    Event                    Waits     %Time-outs     Total Wait Time (s)     Avg wait (ms)     Waits /txn
    latch: cache buffers chains     45,542     0.00          6                    0     22.99
    log file parallel write          2,107     0.00          3                    1     1.06
    log file sync               805     0.00          2                    2     0.41
    latch: session allocation     5,116     0.00          1                    0     2.58
    buffer busy waits          20,482     0.00          1                    0     10.34
    db file sequential read          157     0.00          1                    4     0.08
    control file parallel write     1,330     0.00          0                    0     0.67
    wait list latch free          39     0.00          0                    10     0.02
    enq: TX - index contention     632     0.00          0                    0     0.32
    latch free               996     0.00          0                    0     0.50
    SQL*Net break/reset to client     1,738     0.00          0                    0     0.88
    SQL*Net message to client     108,947     0.00          0                    0     55.00
    os thread startup          2     0.00          0                    19     0.00
    cursor: pin S wait on X          3     100.00          0                    11     0.00
    latch: In memory undo latch     136     0.00          0                    0     0.07
    log file switch completion     4     0.00          0                    7     0.00
    latch: shared pool          119     0.00          0                    0     0.06
    latch: undo global data          121     0.00          0                    0     0.06
    buffer deadlock               238     99.58          0                    0     0.12
    control file sequential read     1,735     0.00          0                    0     0.88
    SQL*Net more data to client     506     0.00          0                    0     0.26
    log file single write          2     0.00          0                    2     0.00
    SQL*Net more data from client     269     0.00          0                    0     0.14
    reliable message          12     0.00          0                    0     0.01
    LGWR wait for redo copy          26     0.00          0                    0     0.01
    rdbms ipc reply               6     0.00          0                    0     0.00
    latch: library cache          7     0.00          0                    0     0.00
    latch: redo allocation          2     0.00          0                    0     0.00
    enq: RO - fast object reuse     2     0.00          0                    0     0.00
    direct path write          21     0.00          0                    0     0.01
    cursor: pin S               1     0.00          0                    0     0.00
    log file sequential read     2     0.00          0                    0     0.00
    direct path read          8     0.00          0                    0     0.00
    SQL*Net message from client     108,949     0.00          43,397                    398     55.00
    jobq slave wait               14,527     49.56          35,159                    2420     7.33
    Streams AQ: qmn slave idle wait     246     0.00          3,524                    14326     0.12
    Streams AQ:qmn coordinator-
    idle wait                451     45.45          3,524                    7814     0.23
    wait for unread message on -
    broadcast channel          3,597     100.00          3,516                    978     1.82
    virtual circuit status          120     100.00          3,516                    29298     0.06
    class slave wait          2     0.00          0                    0     0.00 Message was edited by:
    RJiv
    Message was edited by:
    RJiv
    Message was edited by:
    RJiv
    Message was edited by:
    RJiv
    Message was edited by:
    RJiv
    Message was edited by:
    RJiv
    Message was edited by:
    RJiv
    Message was edited by:
    RJiv
    Message was edited by:
    RJiv

  • Just switched to Excel 2007...a few questions

    I just switched to Excel 2007 from Excel 2003 and am experiencing the zoom/delayed retrieval issues that many have spoken of in other threads.
    We currently are running essbases 9.3.1.0
    Many of my other co-workers are still using Excel 2003.
    Our company has not yet upgraded to version 11 yet so what is the optimum version (update) of essbase I should be using so that I do not experience these zoom issues and will that impact the compatability of any of my spreadsheets with my co-workers who are using Excel 2003?
    Do I need 9.3.1.3?
    Thanks in Advance!
    Edited by: [email protected] on Jun 18, 2010 9:21 AM

    Hi,
    9.3.1.3 client install should resolve your issues
    Spreadsheet Add-in. Retrieving data using Spreadsheet Add-in with Microsoft Excel 2007 may result in slow performance. When the Formula Fill option is selected, zooming in on a member (whether using mouse actions or menu items) may result in slow retrieval performance and an error message indicating that the maximum number of rows has been exceeded.
    When the Retain on Zoom option is selected, zooming out on a member (whether using mouse actions or menu items) may result in slow retrieval performance.
    The Formula Fill and Retain on Zoom options are on the Mode tab of the Essbase Options dialog box. [6695282, 7019497, 7019501]
    More information in the readme :- http://download.oracle.com/docs/cd/E10530_01/doc/epm.931/esb_93130_readme.pdf
    Different client installation files can be downloaded from My Oracle Support under patches.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Errors opening Excel 2007 spreadsheets in Excel 2010

    When I try to open spreadsheets created in Excel 2007 with Excel 2010, I get the error:  "Excel found unreadable contenct in 'file name'.  Do you want to recover the contents of this workbook?  If you trust the source of this workbook, click
    Yes".  Then a Repairs dialog box comes up saying:  "Excel completed file level validation and repair. Some parts of this workbook may have been repaired or discarded.    Removed Part: Print options."  File then opens fine. 
    We receive Excel 2007 from various sources.  One of my problem is that we are just starting to migrate people to Windows 7 and Office 2010, with most people still on Office XP.  The file format converter for Excel 2002/2003 does not work with these
    Excel 2007 files.  The other problem is that we have macros that are used to open Excel files and import data into other Excel files.  Pretty hard to modify these macros to allow for some files that are going to pop up this error, and others that
    do not.
    What is causing this problem, and what fix is available?  We have asked that people save the Excel files in Excel 97-03 format before sending to us, with mixed results. 

    Hi,
    Thank you for using Excel IT Pro Discussions forum. 
    Are you using Office 2010 RTM version? If it is trial version or beta version, I suggest upgrading it to the RTM version.
    First, please check if this KB article helps:
    Error message when you try to open a workbook in Excel 2007: "Excel found unreadable content in Book_Name"
    http://support.microsoft.com/kb/929766
    Note: The steps are for Excel 2007. The steps in Excel 2010 are similar.
    If the problem persists, let’s also check the following settings in Excel 2010.
    ========
    1.      
    In Excel 2010, click File > Options > Trust Center > File block settings.
    2.      
    Check the checkboxes before:
    Excel 2007 and later Wordbooks and Templates
    Excel 2007 and later Macro-Enabled Workbooks and Templates
    Excel 2007 and later Add-in Files
    Excel 2007 and later Binary Workbooks
    Then, try to open the Excel 2007 file in Excel 2010 and check the results again.
    Best Regards,
    Sally Tang
    TechNet Subscriber Support
    in forum
    If you have any feedback on our support, please contact
    [email protected]  

  • Accessing Excel 2007-file from BO Explorer App

    Hello all,
    I have a problem when trying to access excel 2007-files in an InfoSpace ( XI 3.1 SP2) from the iPad with the BO Explorer App.
    Accessing this file from the Browser is no problem and accessing the same file saved as excel 2003 is also no problem from the IPad.
    Anybody an idea what could be the problem? I have to save some files with excel 2007 because number of rows.
    Thanks in advance!
    Regards,
    Christian
    Additional hint: Always the following error message appears:
    It is not possible to retrieve the facets within the Explore tab.
    org.xml.sax.SAXParseException:Character reference "&#26" is an invalid XML character.
    Any idea? Thanks!
    Edited by: Christian Hurth on Sep 9, 2011 2:35 PM

    I do now see that you are correct: there is a difference between Excel 2007 and Excel 2010. Your particular usage is somewhat unusual and there probably isn't anything you can do, except to recognise that you are a beneficiary
    of it (although others may be less fortunate).
    The type of protection that you are applying protects the workbook against certain types of change; it does not prevent people opening it, and they do not need a password to open it, so, in a sense, it does not need to be
    encrypted. In Excel 2007 (and Excel 2003 before it), the workbook was, nonetheless, encrypted, and in Excel 2010 it isn't.
    This change means that someone can remove the protection outside Excel (just by deleting that single line of XML), something that couldn't be done before so it is a loss of security.
    I'm a Word person, rather than Excel, and I don't know all the details of the different types of 'protection' that can be applied to Workbooks and Sheets.
    I have, however, not seen anything about this before and will ask some Excel friends if they know anything. Beyond that I don't think I can help any more.
    Enjoy,
    Tony
    www.WordArticles.com

  • Java corba ID CS5 7.0 Problem with table format import excel 2007 document

    hello,
    I want to import an excel 2007 document with a table into a textframe. This is the code to set import preferences:
         ExcelImportPreference pref = aplicacion.getExcelImportPreferences();
         pref.setTableFormatting(kTableFormattingOptionsExcelFormattedTable.value);
    but when I insert the file into de texframe and export in a pdf file i lose the table format, always apply this format: kTableFormattingOptionsExcelUnformattedTabbedText.value.
    This problem only happens with excel 2007. Excel 2003 files the import is ok.

    Apart from iTunes (which I rarely update since we never use it) they both had a Java update, which I'm installing now but I can't imagine that's connected (plus they both didn't have it). Both Macs are 10.6.8.
    I also repaired the permissions and cleaned caches on Friday. Today I created a new user/profile and tried the same thing on that. No luck.

  • Error when select sheet for Excel file from Excel 2013 with visual basic

    Dim AppXL As Object
    Dim MyWorkBook as Object
    Set AppXL = CreateObject("Excel.Application")
    Set MyWorkBook = AppXL.Workbooks.Open("E:\MyFile.xls)
    AppXL.Sheets("Sheet1").Select
    The above code run with no problem when use in machines with Excel 2007 and Excel 2010.
    But when run in machine with Excel 2013,  error with "Out of Range" occur. Kindly advise for any solution.
    TS Lim

    With your highlight on the AppXL.Workbooks.Open, I have solved the problem by re-position the statements.
    Below are the 2 situation which works in for Outlook 2007, 2010 and 2013
    Situation 1, work for Outlook 2007 and 2010 but d not 2013
    With AppXL  
        Set WorkBookFrom = AppXL.Workbooks.Open("E:\MyFile.xls")
    Set WorkBookTo = AppXL.Workbooks.Open("E:\MyFile2.xls")
      WorkBookFrom.Activate
        .Sheets("Sheet1").Select
        .Range("A1:IV65536").Select
        .Selection.Copy
            WorkBookTo.Activate
        .Sheets("Sheet1").Select
        .Selection.PasteSpecial Paste:=-4163, Operation:=-4142, SkipBlanks:=False, Transpose:=False
        .Range("A1").Select
          WorkBookTo.Save
    End With
    Situation 2, work for Outlook 2007 and 2010 and  2013
    With AppXL  
        Set WorkBookFrom = AppXL.Workbooks.Open("E:\MyFiel.xls")
      WorkBookFrom.Activate
        .Sheets("Sheet1").Select
        .Range("A1:IV65536").Select
        .Selection.Copy
    Set WorkBookTo = AppXL.Workbooks.Open("E:\MyFile2.xls")
            WorkBookTo.Activate
        .Sheets("Sheet1").Select
    .Range("A1").Select
        .Selection.PasteSpecial Paste:=-4163, Operation:=-4142, SkipBlanks:=False, Transpose:=False
          WorkBookTo.Save
    End With
    Thank you for indirectly  help me to solve the problem.
    TS Lim

  • Excel 2007 and Smartview 11.1 file open slow

    We are in the process of upgrading to HFM system 11.1 and smartview 11.1.1.3 and as part of this process we are starting to use Excel 2007. I am encountering an interesting problem when opening files in Excel 2007 using smartview 11.1 and I am wondering if any one else has seen this problem and found a solution.
    First I converted an excel 2003 file to excel 2007 and saved the file as an xlsx file type. Then I am able to open the file and it would take about 30 seconds to open the file. The file has about 15,000 formulas on for spreadsheets. If I click on each spreadsheet individually and use the "Refersh" button I can save the file in about 10 seconds and then close the file. When I open the file again it will open in 30 seconds. Now using the same file I click "Refresh All" and the file processes fine. I am able to save and close the file in about 10 seconds. However, when I try to open the file again it takes about 20 minutes to open, and then 20 minutes to close.
    This only happens with two or three files. I have another file that is 40 spreadsheets and about 3,000 formulas that is not affected when I click Refresh or Refresh All.
    Any help would be apperciated.
    Rich

    Hi
    On metalink i found some notes about this issure
    "Background
    SmartView communicates over HTTP using .NET. This just means that requests and responses are sent in a standard XML format that is tucked in the HTTP headers. The mechanism is the same as when your internet browser requests a file or submits a form (simplification). A standard Microsoft component that is part of Internet Explorer is used for this.
    There are three components (four if you include the network) in a SmartView refresh:
    -the client
    -the web server
    -the HFM application server
    It is easiest to troubleshoot when they are on separate machines. (Running SmartView on the server to see whether it works better is a useful test to see what effect the network is having, but doesn't show any other bottlenecks.) If you run Task Manager on these 3 machines showing the Performance tab, you will see initial activity on the client as Excel clears the cells and the request is converted into XML. Then you see the web server get busy as it receives and parses the request. Then the application server is busy as it send the data, then the web server is busy as it compiles the results into XML again, and finally the client parses the XML, pushes the data into cells and runs an Excel calculation. This last stage is the longest of all. Overall, it is typical to see the client doing 90-95% of the work, so client performance is a very important factor. Look out for Excel's memory usage increasing and RAM becoming in short supply. Often, user dissatisfaction with refresh times can be alleviated by giving them more RAM or a faster PC.
    The situation we are dealing with here, however, is when the chain of events described above is interrupted. In this case, you will see the client or the web server wait in vain for a response from the next machine in the chain. The case of invalid XML is similar, but the response is truncated so that the XML is not well-formed when it arrives. XML consists of matching pairs of tags and is not well-formed when a closing tag is missing. This can be caused by certain network settings such as packet size (see later). The end result in either case is the same: as Excel cleared the cells before sending the request, cells are left blank or with zeroes.
    Your job now is to work out why the particular component is failing.
    Client
    Check the HTTP time out in the registry:
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings]\
    "ReceiveTimeout"=dword:00dbba00
    "KeepAliveTimeout"=dword:002BF20
    "ServerInfoTimeout"=dword:002BF20
    The time-out limit is five minutes for versions 4.0 and 4.01 and is 60 minutes for versions 5.x and 6. Also, the time-out limit is 30 seconds for Windows Internet Explorer 7. To change the settings, add the above keys. The above values are hexadecimal, not decimal and correspond to 18000 milliseconds (3 minutes) and 240 minutes for the receive time-out. See
    - http://support.microsoft.com/kb/813827
    - http://support.microsoft.com/kb/181050
    Once you make those changes, my recommendation is that you reboot the client machine.
    Web server
    Look for errors in logs showing that the web app didn't respond/disconnected or timed out waiting for another application (i.e. the HFM application server). Eliminate load balancers etc. during testing in order to isolate the problem and to ensure that the user always goes to the same web server otherwise, logs can be hard to interpret. See also the IIS Tuning Guide for IIS settings. We cannot recommend particular settings, as each client must establish the optimal settings for their own environment after performance testing. If necessary, engage the services of a suitably qualified consultant.
    Application Server
    HFM application server performance is very dependent on whether the data is already in RAM or not. One symptom, where the first refresh fails but the second one succeeds, is probably a sign that the cache needed to be populated and once that had been done (by the first refresh) it went faster. HFM loads whole subcubes (Scenario, Year, Value and Entity) into cache, so asking for lots of accounts in the same subcube is fast, but asking for lots of entities will inevitably slow things down as it runs out of RAM and starts unloading subcubes to make room for more. The HFM event log (HsvEventLog.log) shows this happening, but don't forget that the messages you see are a normal consequence of the way HFM works and are not a problem unless you see a hugely elevated number of them during the period the refresh occurs. Another sign would be page file thrashing.
    If there are several servers in a cluster, use sticky sessions in HFM to make sure tests always go the same server, or hit one server directly rather than using the cluster.
    Solutions here involve giving more RAM to the server (probably not possible because of the 2 GB limit) and changing the worksheet design to restrict the number of subcubes accessed. A separate consolidation server, so that reads are not competing with intensive consolidations and calculations, would be a good thing.
    Network
    To find out if packets get fragmented, use
    ping -l size -f
    to send a big packet with the 'don't fragment' flag. E.g.
    Ping -l 1024 -f oracle.com
    If you see a reply like Reply from 141.146.8.66: bytes=1024 time=200ms TTL=245 then the size you specified is below the packet limit of the network. But if you use, for example, 2000 in place of 1024, you get Packet needs to be fragmented but DF set, then you know you have exceeded the limit. Combine this investigation with a Fiddler trace (https://www.fiddler2.com/fiddler2/) to see what size data messages are being sent and received.
    Troubleshooting Guidance
    If you seriously want to go into this in more detail, then it will take a considerable effort on your and your IT Department's part. My general advice would be:
    1. During this process, fix your environment so that it is predictable. Register a single HFM application server and connect to that. Use a single web server and don't go through Apache or any other redirector. Make sure we know which machine to go to for logs. This would be a temporary measure and it doesn't stop the other users using the full, load balanced system so long as it doesn't involve your server.
    2. As far as possible keep other users from using it during testing, unless you are specifically testing for performance under load. We want to see what activity is due to SmartView and not random other jobs.
    3. Use PerfMon on all three machines: client, web server and application server.
    4. Clear Logs before testing and note the times of each test so the logs can be correlated.
    5. Log CPU activity, memory usage, network throughput, page faults, thread count etc. I'm no expert on this so get advice from someone who is.
    6. In addition to the performance logs, from the IIS Server get:
    * HTTP.SYS Error Log - %windir%\System32\LogFiles\HTTPERR (Default location; configurable)
    * IIS Website Log - %windir%\System32\LogFiles\W3SVC# (Default location; configurable)
    * Event Log (both System and Application) in EVT and TXT (tab separated) formats
    7. From HFM Application server get:
    * HsvEventLog.log (in <HFM install>\Server working Folder)
    * Event Log (both System and Application) in EVT and TXT (tab separated) formats
    8. Be aware of all timeout settings in your environment (i.e. IIS & the network) and time your tests. This can show whether it is an ASP timeout, script timeout, client side timeout or whatever. Note that the Web Session Timeout setting for SmartView in HFM's Server and Web Configuration is a separate issue from IIS timeouts. Web Session Timeout controls the length of idle time before SmartView makes the user log in again. Default 20 mins.
    9. Run Fiddler traces to directly observe the XML and check for HTTP failures.
    Further resources
    - Tuning IIS 6.0 for HFM
    - SmartView Performance FAQ
    Both are available from Support.
    Author: Andrew Rowland
    Version: 11.x (Fri, 30 October 2009)"
    regards
    Alexander

Maybe you are looking for

  • Uninstall Airport extreme 2008-004 update and go back to previous version

    Hello This morning I installed the airport extreme 2008-004 update. Since then, I have not been able to access the internet when my VPN (Check Point) is active. I can access the internet if I "stop" the VPN. I use a Netgear WNR834M router and I have

  • Volume discount for whole month

    Hello sir's I am having one querry, i maintain the time dependent condition Volume discount (zvls), For EX: I want to calculate the zvls for aspecific period, suppose i created 10 nos of purchase order, post a GR and also settled the payment for that

  • Getting backup details--what was backed up?

    Is there a way to find out the details of what was included in a specific backup? My computer just backed up about 3 Gigs of data after already making a different backup today. My Parallels folder is already excluded so I know that it's not that. Bes

  • Cards App: Credit Card(s) Declined Every Time

    This is frustrating.  I'm trying to give Apple my $2.99 and the Cards App just keeps saying credit card declined.  I did succesfully order a card from it on Thursday 10/13/11. I know that my card is good.  I have ensured that it is the same card that

  • HANA - known SAP Controlling errors

    Hello, I am looking for (a list of) known errors in SAP-CO (Controlling) which occured because of the SAP-HANA database being used. Any Information within this context would be welcome. Thanks a lot in advance. Thomas