EVDRE: Sumparent. Does this only work when expanding down AND accross

Dear Forum,
I am trying to put together an input schedule that uses SUMPARENT to calculate all the parent values in the reportin grid. This seems to work ok when I expand on row and columns but stops working when I expand on Rows only. Does anyone know why this may be happening or experienced this before and found a workaround
best regards
Azim

Hey Azim
This thread is a bit old so not sure if you have worked this out as if you have it'd be awesome.
I'm having this same issue and the only thing I can get to work is if I have a dynamic dimension in both my rows and my columns, then I can get sumparent to put in the formulas.
If however I don't meet that criteria or I refer to SELF in a dimensino it doesn't work.
So for the time being I have a work around that after the refresh button is pressed (I imbedded one in the worksheet) then it runs a piece of code that finds all the calculated members and places a formula in there.  But I'm sure there is a better way to do this, if you have come across one that'd be much appreciated
Thanks
Jason

Similar Messages

  • Does iMessages only work when writing to people who have i05, or can you write to people using other systems ?

    I have an iPad 2, but have never yet been able to send a iMessage....does this only work when writing to people who also have i05, or can you also write to people who use other systems ?
    iMessages is turned on on my system, but even when writing to people who I know have iPads or iPhones , I just get the red exclamation mark....
    Sending messages on my iPhone seems to work okay when sending to non iPhone users, so I don't understand what's wrong here .

    From http://support.apple.com/kb/HT3529 :
    iMessage allows you to send unlimited text, photos, videos, locations, and contacts using Wi-Fi or 3G* from your iPhone, iPad, or iPod touch to other iOS 5 users.
    Note: On iPhone, if iMessage is unavailable, the message may be sent as SMS or MMS, depending on content. Carrier messaging rates may apply. You can turn this on or off in iPhone at Settings > Messages > Send As SMS. Messages sent using iMessage will appear in a light blue bubble, while messages sent using SMS or MMS will appear in a green bubble.

  • Does Lightroom only work when online?

    Does Lightroom only work when I am online?   Do I have to be online to process or work on files?   If I cannot be online, eg, when in a remote area with no service, how do I process my photo's?

    You can easily test this by cutting off all network access to your computer (turn off wi-fi or disconnect the network cable). You'll find that you can still get stuff done if there is no Internet. Especially if you are using the non-subscription version of Lightroom, which doesn't need to check in at all after it's first licensed.
    If you do use Lightroom through a subscription to Creative Cloud, the annual plan has an offline mode limit of 99 days (over 3 months); the limit is 30 days offline for the monthly plan. And if you stop your subscription, you still have access to your images and some Lightroom features.

  • Does Siri only work when connected to WiFi

    Does Siri only work when you are connected to a Wifi?  Mine does not seem to work through the 4G cell network.

    It works over WiFi or cellular.
    If you are using 4G cell network, are you using something like a Verizon MiFi 4510L to create a hotspot that your iPhone 4S is using?
    There are other issues with Siri that are going on - perhaps that is what you are seeing?

  • How can I delete e-mails from one IPad without removing them from other IPads on same icloud? I'ved tried switching off mail sync on all devices but this only works when deleting on IPhone

    We have several portable devices and a mini mac on our system and have found that if we delete an email on one device it is removed from others.
    We don't want this, but at the same time we need to keep our devices clear of clutter.
    It was suggested that switch off the sync mail switch in settings - Icloud, but this only works on IPads & Ipods
    anybody got any better ideas ??

    We have several portable devices and a mini mac on our system and have found that if we delete an email on one device it is removed from others.
    We don't want this, but at the same time we need to keep our devices clear of clutter.
    It was suggested that switch off the sync mail switch in settings - Icloud, but this only works on IPads & Ipods
    anybody got any better ideas ??

  • Why does adobe only works when 1st installed

    Every time I want to use Adobe on my Mac I have to reinstall.  It works when first installed.  The next time I try to open a file I get a message same I am blocked.

    1. Uninstall Flash.
        http://helpx.adobe.com/flash-player/kb/uninstall-flash-player-mac-os.html
        Reinstall Adobe Flash.
        http://get.adobe.com/flashplayer/
    2.  Allow  Plug-ins
        Safari > Preferences > Security
        Internet Plug-ins >  "Allow  plug-ins"
        Enable it.

  • Problem: Why does this only work for powers of 2?

    I wrote this program to create a golf league schedule for, ideally, eight players. However I want it to be flexible enough to permit for other denominations, such as 10 or 12. When I run the program it works perfectly for any number that is a power of 2 (2,4,8,16,32,etc...) but it will not work for other even numbers such as 6,10, or 12. If anyone has any insights it would be most helpful.
    *(This is my first post on this forum so if anything looks not quite right or if this post isn't worded exactly how it should be then I apologize in advance)*
    Here's the three classes.
    public class ScheduleDriver
         public static void main(String[] args)
                              //instance variables
              int max;     //size of flight matches array
              ScheduleMaster master;//instance of class
              //get max number of players for flight
              System.out.print("Max number of players in this flight:");
              max = Keyboard.readInt();
              master = new ScheduleMaster(max);
              //create weekly schedules for season
              master.createSchedule();
              //display weekly schedules
              master.displayWeekly();
         }//end main
    }//end ScheduleDriver
    public class ScheduleMaster
         //instance variables
         int maxPlyrs;//maximum number of players in flight
         Week[] weeklySchedule;//array of weekly matches
         public ScheduleMaster(int plyrs)
              //set up instance data and declare array size
              maxPlyrs = plyrs;
              weeklySchedule = new Week[plyrs];
              //set up the size of each week's matches array
              for (int pos = 0; pos < plyrs; pos++)
                   weeklySchedule[pos] = new Week(plyrs);
              }//end for
         }//end constructor
         public void createSchedule()
              int count = 0;//index of weeklySchedule array
              final int QUIT = -1;     //quit value for loop
              int flag = 0;     //value to continue or exit loop
              //for each player A
              for (int a = 1; a < maxPlyrs; a++)
                   //for each opponent of player A
                   for (int b = (a + 1); b <=maxPlyrs;b++)
                        //set count/index and       reset flag to zero
                        count = (a - 1);
                        flag = 0;
                        //while still haven't found correct week for this match
                        while (flag != QUIT)
                             //if at least one of these players are already scheduled
                             //for a match this week
                             if (weeklySchedule[count].checkPlayers(a,b) == true)
                                  //if last valid index of array has been reached
                                  if (count == (maxPlyrs - 2))
                                       //reset count/index to zero
                                       count = 0;
                                  else
                                       //incriment count
                                       count++;
                             }//end if
                             else
                                  //assign this match to array of matches for week
                                  //and then exit loop
                                  weeklySchedule[count].setMatch(a,b);
                                  flag = -1;
                             }//end else
                        }//end while
                   }//end for
              }//end for
              //fill in last week/position night
              for (int pos = 0; pos < maxPlyrs;pos++)
                   //set up position match
                   weeklySchedule[maxPlyrs - 1].setMatch(pos + 1, pos + 2);
                   //incriment pos
                   pos++;
              }//end for
         }//end createSchedule
         public void displayWeekly()
              //for each week in schedule
              for (int pos = 0; pos < maxPlyrs;pos++)
                   //display header
                   System.out.print("WEEK " + (pos + 1));
                   //if pos/index is 0 or even, flight plays front 9
                   if ((pos % 2) == 0)
                        System.out.println(" [FRONT 9]");
                   //else flight plays back 9
                   else
                        System.out.println(" [BACK 9]");
                   //display lines
                   System.out.println("----------------");
                   //display week's matches
                   weeklySchedule[pos].display();
                   //skip a line
                   System.out.println("\n");
              }//end for
         }//end displayWeekly
    }//end ScheduleMaster
    public class Week
         int[] schedule;          //array of players involved in matches for week
         int max;               //max number of players
         int count = 0;          //number of players currently involved in matches
         public Week(int size)
              //set up instance data and size of array
              max = size;
              schedule = new int[size];
         }//end constructor
         public boolean checkPlayers(int playerA, int playerB)
              boolean flag = false;     //flag to determine if at least one of
                                            //the players to check are already playing
                                            //this week
              //for each element of array
              for (int pos = 0; pos < max; pos++)
                   //if player A matches player already playing this week
                   if (schedule[pos] == playerA)
                        flag = true;
              }//end for
              //for each element of array
              for (int pos = 0; pos < max; pos++)
                   //if player B matches player already playing this week
                   if (schedule[pos] == playerB)
                        flag = true;
              }//end for
              return flag;
         }//end checkPlayers
         public void setMatch(int playerA, int playerB)
              //if array can take more matches
              if (count <= (max - 2))
                   //insert players into array of active players for week
                   schedule[count] = playerA;
                   schedule[count + 1] = playerB;
                   //incriment count of players playing this week by 2
                   count = count + 2;
              }//end if
              else
                   System.out.print("No more matches can be entered!!!");
         }//end setMatch
         public void display()
              //for every even numbered index starting at zero
              for (int num = 0;num < max;num++)
                   //display the player at that position and the next consecutive
                   //player who will be his opponent for the week
                   System.out.println(schedule[num] + "VS" + schedule[num + 1] +
                   //incriment num
                   num++;
              }//end for
         }//end display
    }//end Week

    Ah, I have discovered the problem. The reason for the infinite loop was because of the resetting of the counter/index after every successful match entry back to (a - 1). This was causing matches to be put into weeks where they didn't belong, which caused the program to infinitely loop because it couldn't find an appropriate week to place it's next match. The only time the count should be reset back to zero is when a new player A is being processed or the last valid array index has been referenced before an out of bounds exception would be thrown. I'm still not entirely sure why this doesn't occur on powers of 2 but theh again I haven't put too much thought into it having solved the initial problem! :)
    Anyways thanks for the input all who posted, much appreciated.
    Happy programming!!!!

  • When ever i turn cellular data off then back on my mobile internet doesent work why does this happen?, when ever i turn cellular data off then back on my mobile internet doesent work why does this happen?

    when ever i turn cellular data off then back on my mobile internet doesent work why does this happen?, when ever i turn cellular data off then back on my mobile internet doesent work why does this happen?

    You only asked the question 4 times.  You have to repeat it at least 10 times to get an answer here, and then only if you supply useful info about your phone.

  • Iphone 4: Home Button Not Working. The home button only works when it is connected to iTunes, once i disconnet it does not work, i have tried a restore to factory settings but it still is not working. Any suggestions?

    iphone 4: Home Button Not Working. The home button only works when it is connected to iTunes, once i disconnet it does not work, i have tried a restore to factory settings but it still is not working. Any suggestions?

    Apple, as I said, does not repair your iPhone. All hardware service issues are handled by replacing the unit. So they can't handle the home-button issue without also addressing the issue of the cracked screen, for which they'll almost certainly charge you. But you can make an appointment at an Apple Store or call Apple tech support and plead your case.
    Regards.

  • I added a contact to my iphone 4s and when I did a sync manually it is not showing up on my MAC in address book - please help....I checked off sync all contacts in iTunes  - does it only work one way from computer to phone?

    I added a contact to my iphone 4s and when I did a sync manually it is not showing up on my MAC in address book - please help....I checked off sync all contacts in iTunes  - does it only work one way from computer to phone?

    Is it because the new itunes looks different.
    View > Show Sidebar
    Then it should work just the same as on your old computer.

  • My Airport Time Capsule only works when I turn off and turn on, but I think this may end up with the unit. What can this happening and how to solve?

    Time Capsule Airport
    Hello to all, good day, sorry my english google, but it is the tool I have at the moment. I'm having trouble with my Time Capsule Airport, I made all the settings according to the manual, but there has been a connection problem with my iMac. When I finish my work I turn off the imac and then again when they return to work and care, it can not connect to Time Capsule Airport, making it impossible to remove the files and make back up by Time Machine only works when I turn off and turn on the Airport Time Capsule , but I think this may end up with the unit. What can this happening and how to solve? Thank you.
    Olá a todos, bom dia, desculpe meu inglês google, mas é a ferramenta que tenho no momento. Estou tendo dificuldades com a minha Airport Time Capsule, fiz todas as configurações de acordo com o manual, mas tem existido um problema de conexão com meu iMac. Quando termino meus trabalhos desligo o imac e depois quando retorno pra trabalhar novamente e ligo, ele não se conecta a Airport Time Capsule, impossibilitando retirar os arquivos e fazer o back-up pelo Time Machine, só funciona quando desligo e ligo a Airport Time Capsule, mas acho que isso pode acabar com o aparelho. O que pode esta acontecendo e como resolver? Obrigado.

    This is easier to do with pictures perhaps.. since we do not share a common language and machine translation leaves a lot to be desired.
    In the airport utility bring up your Time Capsule.
    Simply post the screenshots here.
    So here is mine.
    Click on the Edit button and give us the Internet and Wireless and Network tab..
    eg.
    Please also make sure you are set to ipv6 in your wireless or ethernet .. whichever is used.. and do tell which.
    This is wifi in your computer.
    The following are important..
    DO not use long names with spaces and non-alphanumeric names.
    Use short names, no spaces and pure alphanumeric.
    eg TC name. TCgen5
    Wireless name TCwifi
    Use WPA2 Personal security with 10-20 character pure alphanumeric password.
    read apple instructions to help with TM and TC.. they did finally admit it has issues in Mavericks.
    OS X Mavericks: Time Machine problems
    Mount the TC manually in finder.
    AFP://TCgen5.local
    When asked for the password .. that is the disk access password and save it in the keychain.
    Reset Time Machine
    See A4 here. http://pondini.org/TM/Troubleshooting.html

  • My sound has recently gone on my Iphone4s, this only happens when I use my phone myself. The sound works when I receive calls and texts but I am unable to watch videos, listen to music etc it seems like my volume button has gone! Can anyone help??

    My sound has recently gone on my iphone4s, this only happens when I use my phone myself. The sound works when i receive a call or a message etc but I am unable to watch videos or play music, the sound also doesn't work on games. Please can anyone help with this issue or let me know how to fix it if experienced the same problem?

    Remove all apps from multitasking bar. Double click Home button then tap and hold an icon and tap on little x on every app. Then reset. Hold down Home and Power button until Apple logo appears.

  • I needed to install a previously purchased CS6 versus on new computer. To do this, I had to download a version from CC. I will not be using CC. How do I activate Photoshop under my license so that it does not stop working when I am out of communication ra

    I needed to install a previously purchased CS6 versus on new computer. To do this, I had to download a version from CC. I will not be using CC. How do I activate Photoshop under my license so that it does not stop working when I am out of communication range a month from now?

    The CC version will not activate with your perpetual CS6 license. Download the version from here:
    http://helpx.adobe.com/x-productkb/policy-pricing/cs6-product-downloads.html
    Your number should work with this version.

  • TS2529 Im am using Windows 7 ,I log onto to itunes and connect my Iphone.When my iphone tries to sync it gives an error message "itunes has stopped working" - this only happens when i connect my iphone and it tries to sync - help please

    Im am using Windows 7 ,I log onto to itunes and connect my Iphone.When my iphone tries to sync it gives an error message "itunes has stopped working" - this only happens when i connect my iphone and it tries to sync - help please

    Many thanks.
    With those symptoms, I'd try the following document:
    Apple software on Windows: May see performance issues and blank iTunes Store
    (If there's a SpeedBit LSP showing up in Autoruns, it's usually best to just uninstall your SpeedBit Video Accelerator.)

  • Why does fix capitalization work when there is only one space after the period in pages 09?

    why does fix capitalization work when there is only one space after the period in pages 09?  For example:  "Turn on 3rd St. After the traffic light."  There is only one space after the period in "St."  shouldn't it only auto correct after TWO spaces..??  the word After, should be after..

    You may also use a noBreak space after the period at the end of the abbreviation.
    If I remember well, in such case the capitalization will not apply.
    Yvan KOENIG (VALLAURIS, France) mercredi 27 avril 2011 23:34:46

Maybe you are looking for

  • PGC error

    I have been using the Master Collection CS4 without flaws for almost a year now, however, yesterday I suddenly received an unknown e rror.  PGC error.  I take an HDV timeline (1080i) from PPro CS4 and export it via AME under the same settings I alway

  • Capturing Footage that has been shot in Long Play?

    Good Morning All, I have been giving a tape that has been shot in Pal Long Play and I can not log and capture this DV Tape at all. Everytime I do try the footage is just useless. This may sound like a silly question but : Does anyone know the setting

  • Portlet  Discoverer List of Worksheets OAS 10.1.2 ???

    Hi! After we upgreded OAS 9..0.4 to 10.1.2 Portlet "Discoverer List of Worksheets" did't work. On page portal make "Edit defaults" for portlet.. On first step "Database connect" is successfully. Next step show "Discoverer List of Worksheets", but I c

  • How do we create grids ?

    Hi Please give me sample example for creating grids .

  • Where does the blue cable plug into

    where do i plug the blue cable