+ Reply to Thread
Results 1 to 27 of 27

Irregular Macro Performance

  1. #1
    Registered User
    Join Date
    07-21-2009
    Location
    Atlanta, GA
    MS-Off Ver
    Excel 2003
    Posts
    12

    Irregular Macro Performance

    I have a macro that is cycling through a collection that then utilizes selected members of that collection to flag selected excel rows for deletion. The coding seems to be relatively simple but the issue is this:

    A.) There are approximately 2000 lines that it has to delete.
    B.) On 2 of the office computers it takes approximately 20-30 seconds.
    C.) On 2 other office computers, it takes approximately 90 minutes

    ***The behavior is completely replicatable, and happens 100% of the time. The fast PC's are always fast, and the slow PC's are always slow.

    The code is below, but the following steps have already been taken:

    1.) Screen updating is turned off
    2.) Calculation is turned off
    3.) All other files are closed when this file runs

    The PC's are almost all identical (Dell Laptops, same models, approx 1 year old, 2 gig of RAM), utilizing Windows XP and Excel 2003 SP4(?). There is no difference in addins or reference libraries between the PC's, and no significant difference in installed software. There are also no noticeable drains in the task manager or processes hitting the CPU, besides Excel. The CPU is topping out at approx 55% on the slow running PC's. Not sure on the fast running ones.

    Here is the code:
    ________________________________________________________________
    Please Login or Register  to view this content.
    _________________________________________________________________

    Basically on the fast preforming PC's the problem line is instantaneous, on the slow performing PC's the problem line takes approx 5 seconds to execute. Multiply that 5 second execution time by 2000 executions and I've got a problem.

    The only other piece of information is that I was able to speed execution up significantly, by hardcoding the formulas prior to line deletion. Theoretically this should make no difference as the calculation was turned off, but it did. Still not as fast as the 2 faster performing PC's, but performance went from 90 minutes to 3-4 minutes. Its almost as if its still calcing on the 2 slow ones and thats whats holding me up. I say almost, because the formulas in the cells are mostly DBRW formulas linking to Cognos TM1, and the data is not changing, so it appears that I'm not actually getting any new data, or calculations in those cells, while the process is running.

    IMO, its almost as if there is a setting somewhere that I'm missing. If anyone has any idea what might be causing the slow execution of the exact same code, in these 2 PC's, I would greatly appeciate it.
    Last edited by Leith Ross; 07-21-2009 at 11:04 PM. Reason: Added Code Tags

  2. #2
    Forum Contributor
    Join Date
    02-23-2006
    Location
    Near London, England
    MS-Off Ver
    Office 2003
    Posts
    770

    Re: Irregular Macro Performance

    Can you upload an example workbook?
    I can see nothing wrong as such with the macro after a quick glance, but I would avoid using 'Cell' as as the name of a range as it is a valid WorksheetFormula, which could cause some confusion when coding, and also because it is too easy to mistype 'Cell' as 'Cells' which of course has a completely different meaning.

    What I would find interesting would be for you to switch calculation to manual on those slow PC's, and then select a whole bunch of rows manually and delete them and see if it is still slow.

    One thing I have noticed that you don't say is identical, is the actual data the 4 PC's are working on. Are all four processing the same macro on the same data, or does each PC have it's own dataset it is working on? (If the latter have you tried swapping the datasets around?)
    If you find the response helpful please click the scales in the blue bar above and rate it
    If you don't like the response, don't bother with the scales, they are not for you

  3. #3
    Forum Expert
    Join Date
    01-03-2006
    Location
    Waikato, New Zealand
    MS-Off Ver
    2010 @ work & 2007 @ home
    Posts
    2,243

    Re: Irregular Macro Performance

    hi,

    Edit1: Welcome to the Forum

    Does it make any difference if you also turn off events?
    Please Login or Register  to view this content.
    Or if you ensure the calculation is completed by including the one of the below?
    Please Login or Register  to view this content.
    The below link shows an alternative (more common?) approach of using a "built up" range rather than collection for deleting rows which works from bottom to top: http://www.vbaexpress.com/kb/getarticle.php?kb_id=260
    Edit2: Does the macro in the link work any better than the one you currently have?

    hth
    Rob
    Last edited by broro183; 07-22-2009 at 05:32 AM.
    Rob Brockett
    Kiwi in the UK
    Always learning & the best way to learn is to experience...

  4. #4
    Forum Contributor
    Join Date
    02-23-2006
    Location
    Near London, England
    MS-Off Ver
    Office 2003
    Posts
    770

    Re: Irregular Macro Performance

    Just another thought...

    You could put this into the ThisWorkbook section of the VBA Editor:
    Please Login or Register  to view this content.
    At least then you will KNOW if the sheet is performing a calculation when you are not expecting it to?

  5. #5
    Forum Guru romperstomper's Avatar
    Join Date
    11-04-2008
    Location
    A1
    MS-Off Ver
    Most
    Posts
    12,302

    Re: Irregular Macro Performance

    A few additional questions:
    1. Do you have the same AV software on all machines and is the Office plug-in (if there is one) turned on or off?
    2. Do you have page breaks displayed?
    3. Are all machines on the same network segment?
    4. Do all machines use the same printer?

    Additionally. I would suggest you would get better performance using an autofilter and deleting the visible rows, rather than looping.
    Remember what the dormouse said
    Feed your head

  6. #6
    Forum Expert
    Join Date
    01-03-2006
    Location
    Waikato, New Zealand
    MS-Off Ver
    2010 @ work & 2007 @ home
    Posts
    2,243

    Re: Irregular Macro Performance

    hi all,

    Here's a link to a thread chatting about the merits of a variety of approaches for deleting rows - hopefully the link works...
    (there are also a few threads in this forum that show different approaches as well)
    http://www.microsoft.com/communities...6-007444472176

    If the link doesn't work you may be able to find it by going to the below page:
    http://www.microsoft.com/communities...el.programming
    & then using the Search function to find posts that include
    specialcells "peter t"
    .
    The thread is called "Bulk Row Deletion - Fastest method" which is from 2004.
    Note: this discusses the limitations of using Specialcells(xlvisible) for large data sets (I recognise these limits are greater than the size of the current data set but it is best to be aware of potential issues).

    hth
    Rob

  7. #7
    Registered User
    Join Date
    07-21-2009
    Location
    Atlanta, GA
    MS-Off Ver
    Excel 2003
    Posts
    12

    Re: Irregular Macro Performance

    Quote Originally Posted by Phil_V View Post
    Can you upload an example workbook?
    I can see nothing wrong as such with the macro after a quick glance, but I would avoid using 'Cell' as as the name of a range as it is a valid WorksheetFormula, which could cause some confusion when coding, and also because it is too easy to mistype 'Cell' as 'Cells' which of course has a completely different meaning.

    What I would find interesting would be for you to switch calculation to manual on those slow PC's, and then select a whole bunch of rows manually and delete them and see if it is still slow.

    One thing I have noticed that you don't say is identical, is the actual data the 4 PC's are working on. Are all four processing the same macro on the same data, or does each PC have it's own dataset it is working on? (If the latter have you tried swapping the datasets around?)
    Thanks for the reply

    I can't really upload the workbook because its using Cognos TM1 as the data source to drive it. As a result you'd then need the complete Cognos database too, which of course is too big and contains confidential data.

    If I were to break the link to the database, which represents the majority of cells in questions (approx 90%) then the speed will pick up to the 2-3 minute range but defeat the purpose of the model.

    As far as the potential typo's, I agree with what you're saying but there doesn't appear to be that issue right now.

    Lastly, all 4 PC's are using the same data, linking to the exact same Cognos TM1 server, as its a network server. If I change the selections for the data its pulling, it has no effect.

  8. #8
    Forum Contributor
    Join Date
    02-23-2006
    Location
    Near London, England
    MS-Off Ver
    Office 2003
    Posts
    770

    Re: Irregular Macro Performance

    Did you try my suggestion in post #4 so that you can tell whether calculation has actually been set to manual or not?

  9. #9
    Registered User
    Join Date
    07-21-2009
    Location
    Atlanta, GA
    MS-Off Ver
    Excel 2003
    Posts
    12

    Re: Irregular Macro Performance

    Quote Originally Posted by broro183 View Post
    hi,

    Edit1: Welcome to the Forum

    Does it make any difference if you also turn off events?
    Please Login or Register  to view this content.
    Or if you ensure the calculation is completed by including the one of the below?
    Please Login or Register  to view this content.
    The below link shows an alternative (more common?) approach of using a "built up" range rather than collection for deleting rows which works from bottom to top: http://www.vbaexpress.com/kb/getarticle.php?kb_id=260
    Edit2: Does the macro in the link work any better than the one you currently have?

    hth
    Rob
    Thanks again for the reply

    I tried the "enableevents" in the code and it had no effect on the speed at all, on any of the machines.

    The other 2 options I'll look into today and get back to you on.

    Thanks

  10. #10
    Registered User
    Join Date
    07-21-2009
    Location
    Atlanta, GA
    MS-Off Ver
    Excel 2003
    Posts
    12

    Re: Irregular Macro Performance

    Quote Originally Posted by romperstomper View Post
    A few additional questions:
    1. Do you have the same AV software on all machines and is the Office plug-in (if there is one) turned on or off?
    2. Do you have page breaks displayed?
    3. Are all machines on the same network segment?
    4. Do all machines use the same printer?

    Additionally. I would suggest you would get better performance using an autofilter and deleting the visible rows, rather than looping.
    Thank you also for the reply

    1.) What do you mean by AV software and Office plug-in?
    2.) I am not addressing page breaks at all in this model as of yet. I'm letting them "fall where they may" until I get some of these bigger issues resolved.
    3.) All machines are indeed on the same network segment
    4.) They do not all use the same printer. They each have a local printer installed plus various network printers. I cannot however find any obvious patterns/corrolations between which computers are set up with which printers. What are you getting at with this line of thought?

    Lastly, can you expand upon the "use autofilter and delete visible rows". I know what autofilter is and how to delete visible rows, but how would you propose putting them together for a better solution. (I don't need actual code, just a better idea of what you're proposing).

    Thanks again.

  11. #11
    Registered User
    Join Date
    07-21-2009
    Location
    Atlanta, GA
    MS-Off Ver
    Excel 2003
    Posts
    12

    Re: Irregular Macro Performance

    Quote Originally Posted by broro183 View Post
    hi all,

    Here's a link to a thread chatting about the merits of a variety of approaches for deleting rows - hopefully the link works...
    (there are also a few threads in this forum that show different approaches as well)
    http://www.microsoft.com/communities...6-007444472176

    If the link doesn't work you may be able to find it by going to the below page:
    http://www.microsoft.com/communities...el.programming
    & then using the Search function to find posts that include .
    The thread is called "Bulk Row Deletion - Fastest method" which is from 2004.
    Note: this discusses the limitations of using Specialcells(xlvisible) for large data sets (I recognise these limits are greater than the size of the current data set but it is best to be aware of potential issues).

    hth
    Rob
    Thanks you too for the reply.

    I'll take a look into this later and see if I can find a corrolation or some useful information that can be applied here.

  12. #12
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2003, 2010
    Posts
    40,678

    Re: Irregular Macro Performance

    Of the methods suggested at Phil's link (nice link, Phil), I think Bullen's idea is best (no surprise); in an unused column, put a 1 in cells to be deleted, a 0 in cells to be retained, sort the data by that column, and delete the rows with a 1 in one fell swoop. As he points out, Excel's stable sorting means it does not disturb the original data order.
    Entia non sunt multiplicanda sine necessitate

  13. #13
    Registered User
    Join Date
    07-21-2009
    Location
    Atlanta, GA
    MS-Off Ver
    Excel 2003
    Posts
    12

    Re: Irregular Macro Performance

    Quote Originally Posted by Phil_V View Post
    Did you try my suggestion in post #4 so that you can tell whether calculation has actually been set to manual or not?
    Gotta get to that too, but I'm not sure what that gets me. I don't see the values of the data being updated, but I feel like there is some form of calc happening. Hard to describe. My bigger issue is that if it does tell me its calcing, what do I do then? I've already turned off the calc in the code, prior to execution, so what further command could I use?

    I'll give it a shot though and see what I get, as at least it'll possibly give me a better idea of whats going on. I appreciate the feedback.

  14. #14
    Registered User
    Join Date
    07-21-2009
    Location
    Atlanta, GA
    MS-Off Ver
    Excel 2003
    Posts
    12

    Re: Irregular Macro Performance

    Quote Originally Posted by shg View Post
    Of the methods suggested at Phil's link (nice link, Phil), I think Bullen's idea is best (no surprise); in an unused column, put a 1 in cells to be deleted, a 0 in cells to be retained, sort the data by that column, and delete the rows with a 1 in one fell swoop. As he points out, Excel's stable sorting means it does not disturb the original data order.
    Thats exactly what it already has. The code is actually using the first loop to cycle through that column and find the "1's", loading those cell objects into a collection, and then using the second loop to cycle through that collection to delet those rows that have been flagged. The first loop is almost instantaneous on all machines, while the second loop is the one that is experiencing the "irregular performance." When I step it through, its the actual "delete" line thats having the issue.

  15. #15
    Forum Guru romperstomper's Avatar
    Join Date
    11-04-2008
    Location
    A1
    MS-Off Ver
    Most
    Posts
    12,302

    Re: Irregular Macro Performance

    1. AV software = Anti Virus software. Programs like Norton often come with an Office plug in for scanning Office documents. This can decrease performance.
    2. If page breaks are being displayed, then deleting a row will force a reevaluation of where the page breaks should now be. This will slow things down. It also requires communication with the printer (I believe), hence my question about printers. If you can set all machines to the same printer and test, you could at least rule that out.

    As for the autofilter, you appear to be scanning for cells with a value of 1. If you simply autofilter for the value 1, you can then just delete the visible rows in one go rather than looping through each row.

  16. #16
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2003, 2010
    Posts
    40,678

    Re: Irregular Macro Performance

    lostit,

    The difference is, you're deleting the rows one at a time. The suggestion is that you delete them all at once. Stomper's suggestion is similar (using AutoFilter). I wonder if deleting non-contiguous rows is more burdensome than contiguous rows ...
    Quote Originally Posted by Stomper
    If page breaks are being displayed, then deleting a row will force a reevaluation of where the page breaks should now be.
    Clever boy ...
    Last edited by shg; 07-22-2009 at 12:08 PM.

  17. #17
    Registered User
    Join Date
    07-21-2009
    Location
    Atlanta, GA
    MS-Off Ver
    Excel 2003
    Posts
    12

    Re: Irregular Macro Performance

    Quote Originally Posted by broro183 View Post
    hi,

    Edit1: Welcome to the Forum

    Does it make any difference if you also turn off events?
    Please Login or Register  to view this content.
    Or if you ensure the calculation is completed by including the one of the below?
    Please Login or Register  to view this content.
    The below link shows an alternative (more common?) approach of using a "built up" range rather than collection for deleting rows which works from bottom to top: http://www.vbaexpress.com/kb/getarticle.php?kb_id=260
    Edit2: Does the macro in the link work any better than the one you currently have?

    hth
    Rob
    I got a chance to try out your suggestions, including the one in the other post about putting in a Msgbox that triggers every time I get a calculation. Here are my results:

    1.) EnableEvents had no impact
    2.) The CalculationFullRebuild was performed just before I turned off the calculation, and it also had no impact on my long delete time.
    3.) I went to the VBA Express link and utilized their code for a "BuildUp" process that essentially built one large range and deleted that range with a single command. It ran great up until the part where I actually executed that command. The "Delete" command itself took about 25 minutes to execute. So although I'm down from 90 minutes to 25, I feel like the core problem is still there.
    4.) I put in the msgbox and its triggering where I expect it to, but is not triggering after I turn the calc off or during the execution of the delete command.

    So I think I basically struck out on all 4 but I do appreciate the insight. Thanks.

  18. #18
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2003, 2010
    Posts
    40,678

    Re: Irregular Macro Performance

    How about clearing instead of deleting?

  19. #19
    Registered User
    Join Date
    07-21-2009
    Location
    Atlanta, GA
    MS-Off Ver
    Excel 2003
    Posts
    12

    Re: Irregular Macro Performance

    Quote Originally Posted by romperstomper View Post
    1. AV software = Anti Virus software. Programs like Norton often come with an Office plug in for scanning Office documents. This can decrease performance.
    2. If page breaks are being displayed, then deleting a row will force a reevaluation of where the page breaks should now be. This will slow things down. It also requires communication with the printer (I believe), hence my question about printers. If you can set all machines to the same printer and test, you could at least rule that out.

    As for the autofilter, you appear to be scanning for cells with a value of 1. If you simply autofilter for the value 1, you can then just delete the visible rows in one go rather than looping through each row.
    Not sure how to check the AV software. I do know that all of the machines are running the same AV (Kaspersky) as it is part of corporate policy. Its an auto set up that is then locked down and password protected. I doubt that there is any difference in AV between any of the machines. You also cannot turn it off without a password, so I think that can be viewed as a constant in this equation.

    As for the printer drivers being the issue, I could definitely see what you're saying and how it could impact, but in testing it didn't pan out for me. When I changed the network printers on the slow computers it didn't make a difference at all in calc time. When I hit the same network printers from the fast PC's, it also had no impact (they still ran fast).

    So basically I've still got nothing. But I really do appreciate the time and thought put in.

  20. #20
    Registered User
    Join Date
    07-21-2009
    Location
    Atlanta, GA
    MS-Off Ver
    Excel 2003
    Posts
    12

    Re: Irregular Macro Performance

    Quote Originally Posted by shg View Post
    How about clearing instead of deleting?
    This actually was an idea that I had been playing with, but it had a few issues for me. If I cleared contents and then deleted the line immediately, I had no improvement at all. If I cleared contents and then tried to cycle through the collection a second time, it somehow cleared out the collection as I had no members left. Not sure what I was doing wrong there, but I couldn't make it work.

    What I did was combine a clearcontents command into the thought process used in the "build up" method mentioned in one of the other posts. So I built up my "DeletionRows" object with all of the combined addresses, but then cleared the contents of the flagged line at the same time. Once I had finished cycling through all of my detail, and clearing contents, I deleted the flagged, but empty rows, through a single deletion command associated with the "DeletionRows" object and got the performance I was looking for on all machines.

    My performance for the entire routine was as follows:
    Cycled through 10,000+ lines of detail (up from the 2,000+ in original example) and deleted down to about 200 remaining lines (the original base report). The original 2,000 line deletion under the old code took approximately 90 minutes. The new code with 10,000 lines takes exactly 19 seconds.

    Here is the code so that you can see the changes. Thanks again to everyone for their feedback.

    Please Login or Register  to view this content.
    Last edited by lostit; 07-23-2009 at 12:12 AM.

  21. #21
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2003, 2010
    Posts
    40,678

    Re: Irregular Macro Performance

    Please edit your post to add code tags.

  22. #22
    Registered User
    Join Date
    07-21-2009
    Location
    Atlanta, GA
    MS-Off Ver
    Excel 2003
    Posts
    12

    Re: Irregular Macro Performance

    Quote Originally Posted by shg View Post
    Please edit your post to add code tags.
    got it, thanks
    Last edited by lostit; 07-23-2009 at 12:13 AM.

  23. #23
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2003, 2010
    Posts
    40,678

    Re: Irregular Macro Performance


  24. #24
    Forum Contributor
    Join Date
    02-23-2006
    Location
    Near London, England
    MS-Off Ver
    Office 2003
    Posts
    770

    Post Re: Irregular Macro Performance

    lostit,

    I am glad you managed to find a solution to your problem.
    Due to the tendancy of of 'Union' to be slow, if you get a chance you might like to try the following code and see if it gives you a significant speed increase. It might be worth trying it both with, and then without the 'ClearContents' line, as I would be interested to see what effect that would have.

    Once you determine whether the 'ClearContents' line is still needed or not you might then also like to try that macro with the RED lines commented, and the BLUE lines uncommented to see what effect it has.

    I'm hoping that one of these should give you significant speed improvement.

    If you do try it let me know how you get on please

    Please Login or Register  to view this content.

  25. #25
    Registered User
    Join Date
    07-21-2009
    Location
    Atlanta, GA
    MS-Off Ver
    Excel 2003
    Posts
    12

    Re: Irregular Macro Performance

    I tried both of the solutions that you put forward and they both ran slower (approx a minute on each) than the last one I came to. In each event I was still clearing contents. When I removed the clearcontents step from either one, I was back to the long delete time (I shut each off after approx. 10 minutes of waiting).

    Part of the issue may be some calcing, not of excel, but TM1, in the background, so clearing contents seems to be an indispensable step.

    Thanks for the code though.

  26. #26
    Forum Contributor
    Join Date
    02-23-2006
    Location
    Near London, England
    MS-Off Ver
    Office 2003
    Posts
    770

    Re: Irregular Macro Performance

    Ah well, thanks for that. That has surprised me quite a bit, as usually the Union function runs pretty slow, but perhaps the TM1 data here is having more of an influence.
    Thanks for trying

  27. #27
    Forum Expert
    Join Date
    01-03-2006
    Location
    Waikato, New Zealand
    MS-Off Ver
    2010 @ work & 2007 @ home
    Posts
    2,243

    Re: Irregular Macro Performance

    hi all,

    I've been watching this thread but haven't tried testing anything myself b/c of the Cognos links seeming to have such an impact. Here are some thoughts/questions which may or may not be helpful...

    0)
    Lostit, when cross posting it is considerate to everyone if you provide a link to the cross posted thread, in this case: http://forums.olapforums.com/viewtopic.php?f=3&t=1276

    1) I'm having trouble understanding the need for using a Collection of address Strings, rather than directly using the range found (be it row by row or using Union - potential speed issues aside). How did you get guided to this Collection approach?

    2)
    Quote Originally Posted by lostit
    Quote Originally Posted by shg
    Of the methods suggested at Phil's link (nice link, Phil), I think Bullen's idea is best (no surprise); in an unused column, put a 1 in cells to be deleted, a 0 in cells to be retained, sort the data by that column, and delete the rows with a 1 in one fell swoop. As he points out, Excel's stable sorting means it does not disturb the original data order.
    Thats exactly what it already has. The code is actually using the first loop to cycle through that column and find the "1's", loading those cell objects into a collection, and then using the second loop to cycle through that collection to delet those rows that have been flagged. The first loop is almost instantaneous on all machines, while the second loop is the one that is experiencing the "irregular performance." When I step it through, its the actual "delete" line thats having the issue.
    Lostit, when Shg (& Bullen) say "sort the data by that column", they mean using Excel's inbuilt ability via the Data - Sort menu option. Is this what you have tried?

    3)
    Quote Originally Posted by lostit
    ... the formulas in the cells are mostly DBRW formulas linking to Cognos TM1, and the data is not changing, so it appears that I'm not actually getting any new data, or calculations in those cells, while the process is running. ...
    Quote Originally Posted by lostit
    ... If I were to break the link to the database, which represents the majority of cells in questions (approx 90%) then the speed will pick up to the 2-3 minute range but defeat the purpose of the model. ...
    Is your spreadsheet designed nicely in that the formulae are able to be copied down or across (or both)?
    If so, & the data isn't meant to change when the macro is running. Are you open to the idea of saving a row (or column - based on layout) of formulae above the headers (or in a column on the side)?
    This would allow you to convert all your data to values for the duration of the Deletion macro & then recopy down (&/or across) the formulae to recreate the links for the necessary number of cells (thereby recreating model functionality).

    4) I haven't used Cognos for about 5 years & I'm not sure if it was Cognos "TM1" (+ I realise I may look like a clown here! ) but... would it be possible to remove the rows on the Cognos side using parameters/query restrictions before drawing the data into Excel?

    5) As Romper suggested, have you set up the file with:
    (I couldn't see any confirmation & apologise if I have overlooked it within the thread)
    -> View - Zoom, set at 100%?
    -> View - Normal, selected?

    6) A long shot...
    Does ticking Tools - Options - General - "Ignore other applications" help?
    (I'm not sure of the potential wider impacts - try on a copy of your file & remember to change it back)

    7) This shows off my current ignorance of Cognos, so I'm clutching straws straight from the manual!
    In most circumstances, any edits you apply to TM1 cubes are immediately written to the RAM of the TM1 server containing the cube. Each time a value in RAM is updated, a lock is placed on the TM1 server and any views stored in memory affected by the updated value are deleted, which is detrimental to TM1 performance.
    Sourced from: http://download.boulder.ibm.com/ibmd...s_guide_en.pdf
    Are the links in your spreadsheet just pulling from Cognos, or are some trying to "push" back to the TM1 server (ie being "written to the RAM of the TM1 server")?


    Rob

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1