Need help with calc all command..

Hi All,
I have a situation where I need some of the members in accounts dim not be aggregated but some to be aggregated..
so i used.............. calc all except mbr(mbmr_name)
but still i see that the values for this member roll up
can any one help me this
thanks in advance

With knowing all the details, I would suggest maybe creating an alternate hierarchy to provide you another look at aggregate data minus the accounts you are not wanting to aggregate. Just a thought, there are several ways to work this issue......but this is the first I would suggest looking into. If it gets more complicated, then I would explore creating calc script logic utilizing UDA's. Hope this helps.
JC

Similar Messages

  • Need help with a terminal command

    Ever since Lion, or maybe even earlier, I am fighting a losing battle against memory leaks on my MacBook Pro. Safari for example takes over time 2GB+ for just 2 or 3 tabs open with almost no extensions active. Really strange.
    Someone told me about the "purge" command in Terminal to free some of the sequestered memory, so I am doing this a few times a day to be able to use Photoshop, Keynote, Premiere and other stuff concurrently without opening and closing apps like I did 10 or 15 years ago, remember those days?
    So here are my 2 questions:
    Will this frequent "purge" command harm anything in the long run?
    If no, is it possible to automate this "purge" Terminal action somehow? Maybe a desktop icon to click, or fully automated? I am a designer, not a coder, so I would need help with that.
    Thank you for your input!
      Model Name:          MacBook Pro
      Model Identifier:          MacBookPro8,2
      Processor Name:          Intel Core i7
      Processor Speed:          2.3 GHz
      Number of Processors:          1
      Total Number of Cores:          4
      L2 Cache (per Core):          256 KB
      L3 Cache:          8 MB
      Memory:          8 GB
      Boot ROM Version:          MBP81.0047.B27

    Hello, do any modifier keys work, like Optio/alt?
    Could you have Firmware password protection in Mac OS X ...
    http://support.apple.com/kb/HT1352
    It would block usage of all the startup keys, like C, N, T, D, CMD+s, CMD+Option+p+r, CMD +v, Option, and Shift, as well as booting from anything but the Hard Drive.
    Force Removing Password Protection
    1) Add or remove DIMMs to change the total amount of RAM in the computer.
    2) Then, the PRAM must be reset 3 times. (Command + Option + P + R).
    http://www.securemac.com/openfirmwarepasswordprotection.php

  • Need help with Set-ADUser command

    I need a little help with the following command. Im new to PS and I have found this command but it is only one user at a time. I need to be able to update ALL users in AD.
    My goal is this. Someone before me set all Users Home numbers to 1234567899 and I need to remove that and leave it blank. The command below allows me to do that but only one user at a time by entering their SAMID.
    Is there a way to do this for everyone in AD ?
    Set-AdUser –Identity SAMID –HomePhone $NULL

    Yeah sure - 
    Get-Aduser -filter * -properties SamaccountName | Select SamAccountName | % {Set-Aduser -identity $_.SamaccountName -HomePhone $null}

  • Need help with calc from tables

    I have a table that contains query #1 and have another table
    that contains a field that needs to use the result of the cfset in
    another calc.
    The new calc in query #2 needs to divide the Num_Checks_Trans
    from query #1 by the by the Weekly_Hours_Recorded in query #2.
    Can anyone help me figure this out?
    <b>1.</b>
    <cfquery name="QryEmployeeDetail"
    datasource="NBProdReports">
    SELECT TblContractInfo_SubMenuTable.User_ID,
    TblContractInfo_SubMenuTable.Contract_Number,
    TblContractInfo_SubMenuTable.Transaction_Type,
    TblContractInfo_SubMenuTable.Num_Checks_Trans, TblTransType.Value,
    TblContractInfo_SubMenuTable.Notes, TblMasterTrans.Date_Opened
    from TblContractInfo_SubMenuTable, TblMasterTrans,
    TblTransType
    WHERE TblContractInfo_SubMenuTable.Task_Number =
    TblMasterTrans.Task_Number
    and TblTransType.Transaction_Type =
    TblContractInfo_SubMenuTable.Transaction_Type
    And TblMasterTrans.Date_Opened BETWEEN
    #createODBCDate(DED_startDate)# AND #createODBCDate(DED_endDate)#
    order BY TblMasterTrans.Date_Opened ASC,
    TblContractInfo_SubMenuTable.User_id ASC
    </cfquery>
    <cfset totalTrans = 0 />
    <cfloop query="QryEmployeeDetail">
    <cfset totalTrans = totalTrans +
    (QryEmployeeDetail.Num_Checks_Trans * QryEmployeeDetail.Value)
    /></cfloop>
    Text
    2.
    <cfquery name="QryEmployeeDetail"
    datasource="NBProdReports">
    SELECT TblContractInfo_SubMenuTable.User_ID,
    TblContractInfo_SubMenuTable.Contract_Number,
    TblContractInfo_SubMenuTable.Transaction_Type,
    TblContractInfo_SubMenuTable.Num_Checks_Trans, TblTransType.Value,
    TblContractInfo_SubMenuTable.Notes, TblMasterTrans.Date_Opened
    from TblContractInfo_SubMenuTable, TblMasterTrans,
    TblTransType
    WHERE TblContractInfo_SubMenuTable.Task_Number =
    TblMasterTrans.Task_Number
    and TblTransType.Transaction_Type =
    TblContractInfo_SubMenuTable.Transaction_Type
    And TblMasterTrans.Date_Opened BETWEEN
    #createODBCDate(DED_startDate)# AND #createODBCDate(DED_endDate)#
    order BY TblMasterTrans.Date_Opened ASC,
    TblContractInfo_SubMenuTable.User_id ASC
    </cfquery>

    This can be rewritten as a single query which is good for a
    number of reasons, including we only make one trip to the database
    and we do our calculations on the SQL backend, which is faster than
    doing them in CFML.
    What you're going to want to do is SUM() the total
    transaction values by having a column like SUM(Num_Checks_Trans *
    Value) AS totalTrans. To get the value for your other column you
    can calculate that like Num_Checks_Trans / Weekly_Hours_Recorded. I
    didn't see the latter in either of your queries so I'm not sure
    where it comes from, but you can definitely use it in your SELECT
    clause when calculating.
    Since SUM() is an aggregate function, you'll have to use a
    GROUP BY clause to make it work. You'll have to GROUP BY each
    column in the SELECT statement. If some of the columns have
    differing data that you won't want to use in the GROUP, you can
    always use a nested subquery as part of your FROM clause and then
    join that to the original queries with the totals.
    I hope that helps.
    - William

  • Need help with runtime exe command

    Does anybody know how to get the command with double quotes to work with runtime exe?
    String cmd = s+" "+fileName;
    fin = new BufferedReader(new InputStreamReader(Runtime.getRuntime().exe(cmd).getInputStream()));
    if my s is 'grep -i RTU', the fin would have correct value.
    but if my s is 'grep -i "RTU"', the fin doesn't have anything (nothing return from exe(cmd) ).
    I tried printing out the cmd, it looks fine ( grep -i "RTU" filename ).
    Even when I copy the print of cmd and execute it on unix prompt, it return correct value too.
    I also tried excaping double qoutes with backslash. Still doesn't work.
    Thank you so much in advance

    I tried with the exec(String[]) instead of
    exec(String).
    Still doesn't work.
    I'm using Java 2 SDK, Standard Edition Version
    1.3.1_02I am afraid I can't help. I can't duplicate your problem - I have no difficulty passing arguments with or without quotation marks using JDK 1.3. I just wrote a test to be sure, and it worked fine.

  • I need help with safari, all the settings have changed

    some how my homepage setting keeps changing to some thing else even after i go to preferences and set it as the apple home page, also when i click on any thing at all while on the internet it automatically opens a new tab, with mackeeper adds or some thing like that, i can't even try to log on to some thing with out a new tab opening and i am not sure how to fix this.. can any one give me some advice please.

    Hi Richard,
    If my memory serves me right, Macromedia's Flash Player installer is quite idiosyncratic. You need close Safari (if it's open) and:
    Download the disk image (.dmg) from Macromedia,
    Open the disk image,
    Drag the FlashPlayer Installer to your Desktop and
    Double-click (run) the FlashPlayer Installer from your Desktop not from the disk image.
    Double-check with Macromedia's instructions as well...
    Macs running 9.x, Macs running 10.4.x and SGI workstations running Irix 6.5.x
    Message was edited by: fu

  • I need help with the following commands

    I had to reformat my Imac. At first I didn´t knew how to do it... so I google for some info and I found this:
    start iMac while holding down the CMD+S for the computer to boot into single user mode.
    Then:
    Type: /sbin/mount -uw / ENTER
    Type: rm /var/db/.applesetupdone ENTER
    Type: rm -R /Users/* ENTER
    Type: shutdown -h now ENTER
    the iMac is turned off and is like new.
    After I did this nothing happend.... So I called the Technical Service and they explained me very well how to reformat my iMac.
    start iMac while holding down alt
    Then:
    Recovery HD > Disk Utility
    Then:
    Select Macintosh HD and Erase ...
    After doing this... I reinstalled Lion from the internet.
    My questions are:
    Does the introduction of the commands (/sbin/mount -uw / ENTER, rm /var/db/.applesetupdone ENTER, etc...) may have caused a problem??
    If so.. reformat the imac as the Technical Service explained me would have solved??
    Thanks a lot

    Yes all solved :-(

  • New to automator, need help with a pause command

    OK, here's what I am trying to do. Open an shn (compressed audio) file with Shorten to decompress to WAV, then open the WAV with iTunes and convert to AAC.
    I am unable to set a default folder for output from Shorten, so my current plan is to select all the files, doubleclick and set a desktop folder for the WAV output. I made a folder action for that destination to automatically convert to AAC with iTunes and delete the source files. That folder works fine if I drop all WAV files in, but when they get sent one at a time from Shorten, then only a few of the files get routed to iTunes and the rest stay in the folder unconverted.
    I have tried to use "ask for confirmation" which did not work, neither did "wait for user action". I can't use "pause" because each job will be different so I cannot predict how long it will take.
    This is my first attempt at Automator and I think I've done pretty well so far (setting the folder action took quite a while to figure out). Any advice would be appreciated.

    Just a quick response, but...
    I would try making a workflow that just takes the desktop, gets it's contents, filters them for WAV files, then does your iTunes-thing. It's not as easy as just having a folder action, but it should work correctly. Folder actions tend not to work as well when you aren't actually dropping items onto them. They're kind of glitchy in my opinion.

  • I need help with saving all of the photos and videos on my iPhone.

    When I access the screen that has Photos, Shared, and Albums and I click on Photos, there are more photos there than the phone is counting that
    I have on my iPhone. How do I save all those photos or put them onto my computer? I have saved the photos it will let me but I cannot access the photos from more than 2 years ago. Also my phone says I have 43 videos but only 10 save.
    Also, when I upgrade and switch to a newer iPhone, will I see all those photos from the whole history of my phone, will I see all 43 videos, and all my iMessages and SMSs?
    Thank you.

    Hi Sharon,
    The best thing for you to do is 2 things.
    When you purchase a new device(whether it be a iPhone, iPod or iPad)
    1) Perform a full backup of your old device via iTunes. This will save contacts, calendars, photos, text messages, emails, apps in folders how you left them, music, videos, podcasts etc. Note it won't import your photos unless you tell it to.
    1.1) When you get your new device it will ask whether to set up as a new device or from a backup, select from backup and your new phone will look and be exactly the same as your old one, same settings etc.
    2)[optional] I personally like to backup my photos to iPhoto on my mac once a month. When  it reaches the end of the library it asks whether to delete originals or not. If you hit no it doesn't change the photos on your device and you have a copy in your iTunes library. This is handy if you want to use photos from your phone on your mac.

  • Need help with complex column creation command

    Hello, all
    I need help with a complex column creation command and SQL anywhere help is not sufficient for it.
    Here is the situation:
    I need to write a generic DDL "alter table" command, which can add/modify columns without knowing in advance if they already exist in the destination table.
    Is there a command, which looks like:
    alter table "table1" add (on existing modify) column1 <datatype> <default> ?
    Thank you,
    Arcady

    Hi.
    I don't think this is supported in alter table command. But you can code that inside an if statement which queries systables & syscolumns. Your code should be something like that:
    if (select count(*) from sysobjects, syscolumns where sysobjects.id = syscolumns.id and sysobjects.name = 'some_table' and syscolumns.name = 'some_column') < 1
    begin
        alter table some_table add some_column numeric(12) not null
    end
    This is an example..
    Andreas.

  • On Windows 7, CS6 all products, but especially need help with ID.  Fonts that are showing in other applications are not showing in ID.

    on Windows 7, CS6 all products, but especially need help with ID.  Fonts that are showing in other applications are not showing in ID.

    The ID Program folder will be relevant to your OS...
    I took a shot and right clicked on my Scripts Samples, choose reveal in Explorer and opened up the ID Program folder.
    As shown, there is a Fonts folder.
    Drag/Copy/Paste fonts to this folder.

  • I purchased Adobe Acrobat x Pro recently and installed it, I have compatibility issues vision 2013. The adobe pdf converter  plug in stays inactive despite all my efforts to activate it, I need help with this? How can i get the plug in

    I purchased Adobe Acrobat x Pro recently and installed it, I have compatibility issues vision 2013. The adobe pdf converter  plug in stays inactive despite all my efforts to activate it, I need help with this? How can i get the plug in to work with Visio 2013?

    For MS Visio (any version) only the appropriate version of Acrobat *PRO* provides PDFMaker for Visio.
    For Visio 2013 specifically you must have Acrobat XI Pro (updated to at least 11.0.1).
    See: 
    http://helpx.adobe.com/acrobat/kb/compatible-web-browsers-pdfmaker-applications.html  
    Be well...

  • I purchased Adobe Acrobat x Pro recently and installed it, I have compatibility issues vision 2013. The adobe pdf converter  plug in stays inactive despite all my efforts to activate it, I need help with this? How can i get the plug in to work with Visio

    I purchased Adobe Acrobat x Pro recently and installed it, I have compatibility issues vision 2013. The adobe pdf converter  plug in stays inactive despite all my efforts to activate it, I need help with this? How can i get the plug in to work with Visio 2013?

    For MS Visio (any version) only the appropriate version of Acrobat *PRO* provides PDFMaker for Visio.
    For Visio 2013 specifically you must have Acrobat XI Pro (updated to at least 11.0.1).
    See: 
    http://helpx.adobe.com/acrobat/kb/compatible-web-browsers-pdfmaker-applications.html  
    Be well...

  • FormsCentral retiring in July???!!!  Are you freaking kidding me?  My clients use this feature all the time.  What do you suggest I do now?  What service do I go with that is comparable to it?  I need help with this asap!

    FormsCentral retiring in July???!!!  Are you freaking kidding me?  My clients use this feature all the time.  What do you suggest I do now?  What service do I go with that is comparable to it?  I need help with this asap!

    I would suggest checking out http://www.logiforms.com. They have really good PDF support for both hosted PDF's and generating PDFs. You can:
    populate PDF forms from a web form submission
    Merge multiple PDF's together using conditional logic
    Include uploaded images in the generated PDF
    Get Electronic signatures on PDF's
    Use conditional logic when creating PDF's
    Convert HTML to PDF. You design in HTML and CSS and use form field wildcards and generate the PDF
    More of the PDF features are explained here:
    PDF Form Creator | PDF Form Maker | V3.Logiforms.com
    They are also offering a 25% discount to anyone coming from Forms Central...

  • I just downloaded an album from itunes and 2 of the tracks will not play at all, they cut off. I need help with this??

    I just downloaded an album from itunes and 2 of the tracks will not play at all, they cut off. I need help with this??

    Does the track play correctly in Quicktime Player?  If it does then it is an iTunes issue.  If it doesn't then it is possible the file was not completely downloaded, or is corrupt.
    Downloading (using iOS or computer) past purchases from the App Store, iBookstore, and iTunes Store - http://support.apple.com/kb/ht2519 - enabled with iTunes 10.3 and newer; not available in all countries; apps, books (not audiobooks), music, t.v. shows, and movies (some - not all studios have permitted this). Movies currently available in the USA only. Downloading previously purchased movies and TV shows requires iTunes 10.6 or later.  Discontinued items not available. For items not included in the iCloud list (e.g., ringtones), or locations or computer systems where iCloud is not (yet?) available, you only get one download per fee paid. 
    If it can be downloaded again, delete the track from iTunes.
    Select the store on the left side of iTunes.
    Click on Purchased on the right side under Quick Links.
    You can re-download your available previous purchases.
    If it is corrupt and you cannot download it a second time, contact Apple.  Contact iTunes Store support staff through the report a problem links in your account history or,
    iTunes Customer Service Contact - http://www.apple.com/support/itunes/contact.html > Get iTunes support via Express Lane > iTunes > iTunes Store

Maybe you are looking for

  • How do I turn off Apple Support email?  I have gone to email preferences and checked "no" 4 times and the email keeps comings

      I am stuck in getting off the email list of Apple Support.  I have turned the email preferences to " off" 4 times, and still the emails keep coming,  Several hundred at this point. Help!

  • Aspect ratio PAL.

    OK. Downloaded FCE and LiveType. Now... 1. If my finished product will go via iMovie and iDVD do I have to use PAL settings in LiveType or will iDVD PAL setting be sufficient? (Time constraints prevent me from using FCE just right now). 2. I imported

  • Managing error page

    Hi all! Is there a way to manage error pages [ Error Page. You have encountered an unexpected error.  Please contact the System Administrator for assistance.] in OA, cause our customer need to have a page in native language and not in English?! This

  • QuickTime/Flip4Mac in separate not browser window

    I use Flip4Mac to watch and listen to Windows media. Prior to 10.6, the content would open in a separate QuickTime window. Now it opens in the Safari browser. How can I change it so it goes back to opening in a QuickTime window?

  • REG copy of transaction variant for VA01

    Hi, I need to copy transaction variant for VA01 After copying transaction variant i tried to copy screen varaiants for 4440 its working fine  but for screen 4480 the fields which are to be invisible is not working i  tried to use same screen variants