DAX - transfer current context down multiple computation levels

Dear,
I am highly struggling with DAX. I have a very complex query with 4 nested context levels (calculate inside calculate inside summarize inside....etc etc.) that computes a certain KPI based on a certain date.
The problem is that the query works fine via SSRS since I only need to pass one date which is explicitly passed with DATEVALUE(@parameter_name) whenever necessary.
Now I have a requirement to re-use that same logic but the input parameter now is the Year; which I must summarize and for every month compute that KPI based on the last day of the month. 
The query below is a reproduction of the issue I am having in a simpler manner:
DEFINE
    MEASURE 'Date'[Dt] =
        COUNTROWS (
            CALCULATETABLE (
                ADDCOLUMNS (
                    SUMMARIZE ( 'Date', 'Date'[bk_calendar] ),
                    "SecondLevel", CALCULATE (
                        COUNTROWS ( 'Date' ),
                        FILTER (
                            ALL ( 'Date' ),
                            'Date'[BK_Calendar]
                                > EOMONTH (
                                    DATEVALUE (
                                        --The line below returns error: Calculation error in measure 'Date'[Dt]: A table of multiple values was supplied where a single value was expected.
                                        VALUES ( 'Date'[Year] )
                                            & VALUES ( 'Date'[MonthNumber] )
                                            & "01"
                                    0
                --addcolumns
                FILTER (
                    ALL ( 'Date' ),
                    'Date'[BK_Calendar]
                        <= EOMONTH (
                            DATEVALUE (
                                VALUES ( 'Date'[Year] ) & "-"
                                    & VALUES ( 'Date'[MonthNumber] )
                                    & "01"
                            0
EVALUATE
CALCULATETABLE (
    ADDCOLUMNS (
        SUMMARIZE ( 'Date', 'Date'[Year], 'Date'[MonthNumber] ),
        "X", CALCULATE ( [Dt] )
    'Date'[Year] = 2014
As you can see, at the line where I get an error, I am trying to find out how to pass the current end of month date according to the row context in the summarize... but I have no clue how to proceed, all I tried has failed me, and reworking the query or
following a different approach is a too much work (regression impact on the existing).
Can anybody assist on this ?
Thanks in advance for your time
Miloud B.

Greg thanks again for your time.
Unfortunately this does not work either, it says: 
Calculation error in measure 'Date'[Dt]: An argument of function 'DATE' has the wrong data type or the result is too large or too small
Which is disturbing :-)
In the meantime I have found a workaround, a heavy one but it is all i gor for now, I actually have an accounting period dimension for finance data that is not related to my fact I am using for this calculation, although I can cheat with it to pass the date
I want as shown below:
DEFINE
    MEASURE 'Date'[Dt] =
        COUNTROWS (
            CALCULATETABLE (
                ADDCOLUMNS (
                    SUMMARIZE (
                        AccountingPeriod,
                        AccountingPeriod[RealAccountingPeriod]
                    "SecondLevel", CALCULATE (
                        COUNTROWS ( 'Date' ),
                        FILTER (
                            KEEPFILTERS ( 'Date' ),
                            'Date'[BK_Calendar]
                                > EOMONTH (
                                    DATEVALUE (
                                        LEFT ( AccountingPeriod[RealAccountingPeriod], 4 ) & "-"
                                            & RIGHT ( AccountingPeriod[RealAccountingPeriod], 2 )
                                            & "01"
                                    0
                --addcolumns
                FILTER (
                    ALL ( 'Date' ),
                    'Date'[BK_Calendar]
                        <= EOMONTH (
                            DATEVALUE (
                                VALUES ( 'Date'[Year] ) & "-"
                                    & VALUES ( 'Date'[MonthNumber] )
                                    & "01"
                            0
                FILTER (
                    ALL ( AccountingPeriod ),
                    AccountingPeriod[AccountingPeriodYear]
                        = VALUES ( 'Date'[Year] )
                        && AccountingPeriod[AccountingPeriodMonth]
                            = VALUES ( 'Date'[MonthNumber] )
EVALUATE
CALCULATETABLE (
    ADDCOLUMNS (
        SUMMARIZE ( 'Date', 'Date'[Year], 'Date'[MonthNumber] ),
        "X", CALCULATE ( [Dt] )
    'Date'[Year] = 2014
Thanks for your involvement anyway ;-)
Miloud

Similar Messages

  • I have an ipad version 5.1.1. i have multiple albums in the ipad and i want to transfer some photos to my computer but when i open the ipad files via "computer" i can only see picture from one of the albums.what should i do?

    i have an ipad version 5.1.1. i have multiple albums in the ipad and i want to transfer some photos to my computer but when i open the ipad files via "computer" i can only see pictures from one of the albums.what should i do?

    You can only import photos from the camera roll into the computer. Is that the album that you are seeing?
    Any albums that you create on the device itself (the iPad that is) cannot be transferred to your computer. iPad created albums do not contain copies of your photos but merely pointers to those photos so they do not actually exist in those albums.

  • Hi, im currently using an windows 8 computer and have installed itunes 11.5. My problem is i'm trying to transfer one song from my computer to my iphone. But some how i cannot drag and drop like last time itunes 10.x.

    Hi, im currently using an windows 8 computer and have installed itunes 11.5. My problem is i'm trying to transfer one song from my computer to my iphone. But some how i cannot drag and drop like last time itunes 10.x. I do not wish to sync as it means of deleting my entire song list from my phone just to transfer 1.

    " I ordered the Snow Leopard software and tried installing it, but it stopped and said to clean the disk."
    First off, your installation disc is in all likelihood faulty.
    This has been a known issue in the past:
    Faulty Snow Leopard install discs - Apple has no timeline on ...
    http://store.apple.com/us/help/returns_refund#policy:
    *You can return software, provided that it has not been installed on any computer. Software that contains a printed software license may not be returned if the seal or sticker on the software media packaging is broken.

  • How can I transfer purchased itunes from my computer to my iPod without losing/erasing the current songs on my iPod?

    How can I transfer purchased iTunes from my computer to my iPod without losing all the songs I currently have on my iPod?  I've already burned the purchased songs onto DVDs, but they still aren't recognized as authorized songs that I can copy onto my iPod.  One other note:  The songs I purchased were done so with iTune versions much earlier than 10.0, does that matter?  I couldn't tell you what version though.   

    Not sure what you are saying.
    What is stopping you from adding the songs?
    Are you getting an error message?
    What does it say?

  • Error trying to relate tables "...either doesn't exist or doesn't have a relationship to any table available in the current context"

    I have two tables;
    The first is my Order table which has a single row for each unique order - there are no duplicate order numbers.The order id column here is called
    OrderID.
    The second is my Submissions table which is similar to a transactions table, there are multiple submissions for every order. This table also contains an
    OrderID column that contains the relevant OrderID.
    The submission table also contains a calculated field called Date and a calculated field called
    MaxDate field which is the date of the most recent submission that relates to any particular order in cases where there are multipple.
    My goal is to add a column to the Order table this MaxDate column. The reason for duplicating the information rather than linking the tables is because I need to create more calculated columns in the
    Orders table based on this value.
    I have created a relationship between the two tables however when I use:
    =RELATED(Submissions[MaxDate]
    I get this error:
    "...either doesn't exist or doesn't have a relationship to any table available in the current context"
    I don't really understand why this would be, because MaxDate definitely exists and contains only numerical values. What is more strange is that if I try and combine the data through a pivot table it actually works! I can create a pivot with OrderID in the first
    column and then associate it with MaxDate from the Submissions
    table as the value. 
    Can anyone help me understand what is the problem here?
    P.S. if it is useful the formula I'm using to calculate the MaxDate is:
    =MAXX(FILTER(Submissions,Submissions[OrderID] = EARLIER(Submissions[OrderID])),[Date])
    Thanks.

    Maracles, is this still an issue?
    Thanks!
    Ed Price, SQL Server Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!

  • "You must shut down your computer" error. Do I need to do something?

    Hi,
    A few minutes ago my Macbook Pro (late 2009 model running 10.7.2) crashed and flashed the "You must shut down your computer" sign. I rebooted and at the moment the MBP is up and running again but I am not sure whether I should take it in for servicing or not. The kernel panic report is attached.
    Thanks for your response.
    Mon Oct 24 22:56:11 2011
    panic(cpu 0 caller 0xffffff80002c266d): Kernel trap at 0xffffff800024421e, type 13=general protection, registers:
    CR0: 0x000000008001003b, CR2: 0x000000010a214000, CR3: 0x000000003bbab000, CR4: 0x0000000000000660
    RAX: 0xffffff800c86bf40, RBX: 0xffffff8003b7e990, RCX: 0x0000000009000000, RDX: 0xffffff8003b7e9a0
    RSP: 0xffffff80796dbaa0, RBP: 0xffffff80796dbb80, RSI: 0x0000000000000001, RDI: 0xffffff8003b7e9a0
    R8:  0xffffff80796dbbb8, R9:  0xffffff80796dbbd8, R10: 0xffffff800086ee10, R11: 0x000000000010ba96
    R12: 0x00000000000000e0, R13: 0xffffff800bab9a4c, R14: 0x5841400000000000, R15: 0xffffff80008df9e0
    RFL: 0x0000000000010206, RIP: 0xffffff800024421e, CS:  0x0000000000000008, SS:  0x0000000000000010
    CR2: 0x000000010a214000, Error code: 0x0000000000000000, Faulting CPU: 0x0
    Backtrace (CPU 0), Frame : Return Address
    0xffffff80796db760 : 0xffffff8000220702
    0xffffff80796db7e0 : 0xffffff80002c266d
    0xffffff80796db980 : 0xffffff80002d7a1d
    0xffffff80796db9a0 : 0xffffff800024421e
    0xffffff80796dbb80 : 0xffffff800022662d
    0xffffff80796dbbb0 : 0xffffff80005f55c7
    0xffffff80796dbbd0 : 0xffffff80005f58e9
    0xffffff80796dbc00 : 0xffffff80005f4009
    0xffffff80796dbc40 : 0xffffff80005f20c6
    0xffffff80796dbc90 : 0xffffff80005e3f86
    0xffffff80796dbce0 : 0xffffff80005e15a4
    0xffffff80796dbd10 : 0xffffff80005e3f86
    0xffffff80796dbd60 : 0xffffff80005e15a4
    0xffffff80796dbd90 : 0xffffff80005e3f86
    0xffffff80796dbde0 : 0xffffff800061c667
    0xffffff80796dbe00 : 0xffffff800061ecfb
    0xffffff80796dbe10 : 0xffffff80006511fb
    0xffffff80796dbe50 : 0xffffff800029d235
    0xffffff80796dbe80 : 0xffffff8000223006
    0xffffff80796dbeb0 : 0xffffff8000214829
    0xffffff80796dbf10 : 0xffffff800021bb58
    0xffffff80796dbf70 : 0xffffff80002ae8a0
    0xffffff80796dbfb0 : 0xffffff80002d8383
    BSD process name corresponding to current thread: UserEventAgent
    Mac OS version:
    11C74
    Kernel version:
    Darwin Kernel Version 11.2.0: Tue Aug  9 20:54:00 PDT 2011; root:xnu-1699.24.8~1/RELEASE_X86_64
    Kernel UUID: 59275DFA-10C0-30B3-9E26-F7B5DFB1A432
    System model name: MacBookPro5,3 (Mac-F22587C8)
    System uptime in nanoseconds: 38000354004858
    last loaded kext at 38000253952912: com.apple.driver.AppleBluetoothHIDKeyboard          152.3 (addr 0xffffff7f807ad000, size 12288)
    last unloaded kext at 37627376787746: com.apple.iokit.IOEthernetAVBController          1.0.0d5 (addr 0xffffff7f807a8000, size 20480)
    loaded kexts:
    com.parallels.filesystems.prlufs          2010.12.28
    com.parallels.kext.prl_hid_hook          7.0 14922.693916
    com.parallels.kext.prl_hypervisor          7.0 14922.693916
    com.parallels.kext.prl_usb_connect          7.0 14922.693916
    com.parallels.kext.prl_vnic          7.0 14922.693916
    com.parallels.kext.prl_netbridge          7.0 14922.693916
    at.obdev.nke.LittleSnitch          2.4.4
    com.apple.filesystems.afpfs          9.8
    com.apple.nke.asp_tcp          6.0.1
    com.apple.filesystems.udf          2.2
    com.apple.filesystems.smbfs          1.7.0
    com.apple.driver.AppleHWSensor          1.9.4d0
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AudioAUUC          1.59
    com.apple.driver.AppleMikeyHIDDriver          122
    com.apple.driver.AppleHDA          2.1.3f7
    com.apple.driver.AppleMikeyDriver          2.1.3f7
    com.apple.driver.AppleUpstreamUserClient          3.5.9
    com.apple.driver.AppleMCCSControl          1.0.26
    com.apple.driver.AGPM          100.12.42
    com.apple.GeForce          7.1.2
    com.apple.driver.SMCMotionSensor          3.0.1d2
    com.apple.driver.AppleSMCLMU          2.0.1d2
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AudioIPCDriver          1.2.1
    com.apple.driver.AppleMuxControl          3.0.16
    com.apple.driver.ACPI_SMC_PlatformPlugin          4.7.5d4
    com.apple.driver.AppleLPC          1.5.3
    com.apple.driver.AppleUSBTCButtons          225.2
    com.apple.driver.AppleUSBTCKeyboard          225.2
    com.apple.driver.AppleIRController          312
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          33
    com.apple.driver.AppleUSBCardReader          3.0.1
    com.apple.iokit.SCSITaskUserClient          3.0.1
    com.apple.iokit.IOAHCIBlockStorage          2.0.1
    com.apple.driver.AppleFWOHCI          4.8.9
    com.apple.driver.AirPort.Brcm4331          512.20.18
    com.apple.driver.AppleEFINVRAM          1.5.0
    com.apple.driver.AppleUSBHub          4.5.0
    com.apple.driver.AppleRTC          1.4
    com.apple.nvenet          2.0.17
    com.apple.driver.AppleUSBOHCI          4.4.5
    com.apple.driver.AppleHPET          1.6
    com.apple.driver.AppleSmartBatteryManager          161.0.0
    com.apple.driver.AppleAHCIPort          2.2.0
    com.apple.driver.AppleUSBEHCI          4.5.0
    com.apple.driver.AppleACPIButtons          1.4
    com.apple.driver.AppleSMBIOS          1.7
    com.apple.driver.AppleACPIEC          1.4
    com.apple.driver.AppleAPIC          1.5
    com.apple.driver.AppleIntelCPUPowerManagementClient          167.0.0
    com.apple.nke.applicationfirewall          3.2.30
    com.apple.security.quarantine          1
    com.apple.driver.AppleIntelCPUPowerManagement          167.0.0
    com.apple.driver.AppleBluetoothHIDKeyboard          152.3
    com.apple.driver.AppleHIDKeyboard          152.3
    com.apple.driver.IOBluetoothHIDDriver          4.0.1f4
    com.apple.iokit.IOAVBFamily          1.0.0d22
    com.apple.iokit.IOEthernetAVBController          1.0.0d5
    com.apple.security.SecureRemotePassword          1.0
    com.apple.kext.triggers          1.0
    com.apple.driver.DspFuncLib          2.1.3f7
    com.apple.nvidia.nv50hal          7.1.2
    com.apple.NVDAResman          7.1.2
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.iokit.IOFireWireIP          2.2.4
    com.apple.driver.AppleHDAController          2.1.3f7
    com.apple.iokit.IOHDAFamily          2.1.3f7
    com.apple.iokit.IOSurface          80.0
    com.apple.iokit.IOBluetoothSerialManager          4.0.1f4
    com.apple.iokit.IOSerialFamily          10.0.5
    com.apple.iokit.IOAudioFamily          1.8.3fc11
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.driver.ApplePolicyControl          3.0.16
    com.apple.driver.AppleGraphicsControl          3.0.16
    com.apple.driver.AppleBacklightExpert          1.0.3
    com.apple.iokit.IONDRVSupport          2.3.2
    com.apple.iokit.IOGraphicsFamily          2.3.2
    com.apple.driver.AppleSMC          3.1.1d8
    com.apple.driver.IOPlatformPluginFamily          4.7.5d4
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.driver.BroadcomUSBBluetoothHCIController          4.0.1f4
    com.apple.driver.AppleUSBBluetoothHCIController          4.0.1f4
    com.apple.iokit.IOBluetoothFamily          4.0.1f4
    com.apple.driver.AppleUSBMultitouch          227.1
    com.apple.iokit.IOUSBHIDDriver          4.4.5
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.0.1
    com.apple.iokit.IOUSBMassStorageClass          3.0.0
    com.apple.driver.AppleUSBMergeNub          4.5.3
    com.apple.driver.AppleUSBComposite          3.9.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.0.1
    com.apple.iokit.IOBDStorageFamily          1.6
    com.apple.iokit.IODVDStorageFamily          1.7
    com.apple.iokit.IOCDStorageFamily          1.7
    com.apple.driver.XsanFilter          403
    com.apple.iokit.IOAHCISerialATAPI          2.0.1
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.0.1
    com.apple.iokit.IOFireWireFamily          4.4.5
    com.apple.iokit.IO80211Family          411.1
    com.apple.iokit.IOUSBUserClient          4.5.3
    com.apple.iokit.IONetworkingFamily          2.0
    com.apple.driver.NVSMU          2.2.9
    com.apple.driver.AppleEFIRuntime          1.5.0
    com.apple.iokit.IOAHCIFamily          2.0.7
    com.apple.iokit.IOUSBFamily          4.5.3
    com.apple.iokit.IOHIDFamily          1.7.1
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          165.3
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.DiskImages          331
    com.apple.iokit.IOStorageFamily          1.7
    com.apple.driver.AppleKeyStore          28.18
    com.apple.driver.AppleACPIPlatform          1.4
    com.apple.iokit.IOPCIFamily          2.6.7
    com.apple.iokit.IOACPIFamily          1.4

    call apple! 1800-apl-care

  • Azure - The name 'model' does not exist in the current context

    I am getting the error below but only on Azure, everything builds and runs fine on multiple machines running locally. But when I deploy to Azure I get the error below trying to login. Not even sure where to start researching this one
    Compilation Error
    Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately. 
    Compiler Error Message: CS0103: The name 'model' does not exist in the current context
    Source Error:
    Line 1: @model Web.Models.LoginViewModel

    hi,
    From the error message, it seems like a MVC issue.
    I suggest you could re-configure your web configuration follow those solutions The name 'model' does not exist in current context in MVC3
    and
    Razor View throwing “The name 'model' does not exist in the current context” .
    And then you could try to deploy project to azure again. I think this error may be disappeared. Please try it.
    Regards,
    Will
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • My Mozilla icon is no longer showing on my task bar AND I can not shut down my computer

    I have been unable, after multiple attempts, to 'shut down' my computer - while investigating possible reasons, I noticed that although Mozilla shows up on my screen icons, the symbol does not show up on my task bar. Not sure if one has anything to do with the other - but my Mozilla symbol has always showed up on my task bar, until now.

    Hi MarilynJ68,
    This may be more of a Windows problem than a Firefox one, but I will make a stab at answering it for you.
    I am not at the moment using Windows 7. I imagine though that by default it looks for running apps and prompts a user to close or save etc. before closing down.
    Use the task manager by I think right clicking the task bar or (was Ctrl + Alt+ Del) '''Ctrl + Shift+ Esc''' That allows you to see running programs and havethe option to stop them.

  • I am using InDesign CC and added Garamond premier pro font. This has worked for months, now suddenly my entire book is  highlighted in pink and my font is missing! I get the message that the font is currently unavailable on my computer, how can i get it b

    I am using InDesign CC and added Garamond premier pro font. This has worked for months, now suddenly my entire book is  highlighted in pink and my font is missing! I get the message that the font is currently unavailable on my computer, how can i get it back?

    BlazingRiver wrote:
    So my computer is running on OSX but my question is if any of the viruses on my windows partition can still run and communicate information to their 'master' as there is still a supply of electricity? Sorry if its obvious.
    Here's a positive thing: Windows viruses can't run on OS X, but they can be transferred from OS X to other PCs (only if you have them on the OS X volume).
    BlazingRiver wrote:
    1. How could a trusted source e.g. Google and Steam contain viruses if they are downloaded from the original source? and
    You could get a virus from a different source that infected Steam and Chrome without any problem. Viruses normally try to infect as many files and programmes as possible.
    BlazingRiver wrote:
    2. Can iOS devices get viruses and I know this is probably in the wrong but 3. What anti-virus scanner and remover tool do you recommend for windows. The only one I am familiar with is Kaspersky?
    iPhones, iPads and iPods touch can't get viruses but they can transfer them to other PCs. For Windows, I recommend Microsoft Security Essentials

  • Broadcasting "current song" over multiple computers?

    Hey, I hope this is just a stupid question as it seems possible but I can't figure out how to do it; at our studio we have just connected an Airport express to our stereo and we are all able to connect successfully to the Airport and play through the stereo singularly (off of three different computers.) My question is if there is a way that I can view the current song on my computer that someone is streaming from their computer to the Airport. I've found posts about using an iphone as a remote control for an Airport so it seems like the Airport is obviously broadcasting that information out but I can't figure out how to receive it back on multiple computers/iTunes.
    Any advice?
    Thanks!

    I have a similar problem. Wish I had an answer but am struggling with a similar problem. My situation is this: I have a Imac and a Macbook Pro. I have the same 4 accounts on both and I sync them through '.mac'. It works fairly well. My goal is to get one Itunes library accessible from the 2 computers and the 4 accounts per computer. I am also using Time Capsule/Machine as well. I currently keep the Itunes library on an external drive (not TCapsule). So, my problem is this:
    1. How to update from multiple accounts accross the two machines?
    2. How to access Itunes store from all of the accounts on machine 2?
    I am now trying to set up individual Itunes libraries for each account on machine 1 and share to machine 2.
    In any case, this is not pretty and needs to be reachitected to support a multiple user environmet.

  • Transfer 1 asset to multiple assets

    I'm looking for the functionality to transfer 1 asset to multiple assets in one in one transaction.  In transaction code ABUMN, there is a "multiple asset" functionality but it cannot be used to transfer 1 asset to multiple assets.  SAP will give an error message "You want to post a retirement to asset XXXXX. This is not possible, since a retirement was already posted to this asset in the current document."  Is there another transaction code to accomplish this or SAP don't provide this functionality?
    Thanks

    write your own program with bdc (shdb)
    basis could be a simple excel-worksheet like
    old_bukrs old_anln1 old_anln2 new_bukrs new_anln1 sub-asset  part
    1000        4711        0             1001         1000                          50 %
    1000        4711        0             1001         1000          X              25 %
    1000        4711        0             1001         1000          X              15 %  
    1000        4711        0             1001         1001                          10 %  
    1000        4712        0             1001         1002                          50 %  
    1000        4712        0             1002         1002                          50 %  
    load this from csv into internal table
    and loop this table to fill trx. abumn
    A.

  • How to display current context while opening a todo entry from main menu

    Hi,
    I want to display the current context(account,sp details for customer) while opening a todo entry from main menu while searching through To do entry id.
    Can any body guide me on this ?
    Thanx.
    Sunil

    I am sorry that I didn't get back to all you guys that took to answering my very promptly. Unfortunately I was not in a position to answer to the suggestions made. as I was away from my computer which had Robohelp on.
    Anyway, I did try a couple of scripts mentioned, but didn't really have any success i achieving what I need to do.
    I set up a redirect which redirected to the main home page. I tried setting the home page in a  main sub-project - so the redirect when from any sub project
    Generate
         Master-project.htm (Home Page = Help_Welcome.htm)
    merged Projects
    SubProject1
                [Home Page =  home_redirect.htm (a redirect see below) ]
         SubProject 2
                [Home Page =  home_redirect.htm (a redirect see below) ]
         SubProject 3
                [Home Page =  home_redirect.htm (a redirect see below) ]
    home_redirect.htm  (a redirect use by sub-topics)
    <!--
       window.location="../../ Help_Welcome.htm ";
    //-->
    //]]></script>
    This setup works fine as long as I call the master page. The TOC is as I would want. However if I call an ID from my application I get the required page to display and I can get the TOC to show. The problem is that the TOC is from the current sub-project and not the master project as I would want.

  • Whats Need of  Multiple Aggregate Levels

    Hi Gurus,
    Can some one say whats the need of Multiple Aggregate Levels on a Multi provider?
    Is it some thing Aggregate Levels are just to determine your level of Granularity you want to report upon?
    If really ie the case cant we get it in the query it self by Free Characterstics, Drill Down, Slice and Dice Options?
    Is any other strong reason for one need to go for Multiple Aggregate Levels or Aggregate Levels itself for that matter.
    Thanks for clarification.
    I am trying to understand things better as Iam very new to this area.
    Regards,
    BI-IP Guest

    Manyak,
    Really Thanks for your explanation. Though not completely but mostly I think I understand. Especially Iam really gtill time not aware of an Aggregate Level can supports Planning only at Lowest Granularity.
    I read before that we cant change values at SUM, MIN/MAX Values. But now reading this I understand that we cant change values at Totals Level but only at items Level.
    But again in your example can we change values at indepndent Line Item Level or For Region's Total Level at the end.
    What in this Case if client wants to see both Country and Region under one Layout and both want to changeble for planning?
    One more Last Question if that does not bother you..
    What happens when one go for Input Read Query designed over the Multi-Provider (Contains a realtime Cube for Plan) it self instead of going to Multiple Aggregate levels or for that matter even a Single Aggregate Level also...All I want to know what difference it really makes for me in designing a Input ready Query or else in Getting my Layout or else in Planning Things.
    Might be too many questions on Aggregate Levels but still I request to make me clear.
    Thanks,
    BI-IP Guest

  • Transfer iweb files from one computer to another

    Does anyone know how to transfer iweb files from one computer to another?

    Change the name of the file to Domain-2.sites2 and try to copy it to the Desktop on the new Mac.
    To open your domain file in Lion or Mountain Lion or to switch between multiple domain files Cyclosaurus has provided us with the following script that you can make into an Applescript application with Script Editor. Open Script Editor, copy and paste the script below into Script Editor's window and save as an application.
    do shell script "/usr/bin/defaults write com.apple.iWeb iWebDefaultsDocumentPath -boolean no"delay 1
    tell application "iWeb" to activate
    You can download an already compiled version with this link: iWeb Switch Domain.
    Just launch the application, find and select the domain file in your Home/Library/Application Support/iWeb folder that you want to open and it will open with iWeb. It modifies the iWeb preference file each time it's launched so one can switch between domain files.
    WARNING: iWeb Switch Domain will overwrite an existing Domain.sites2 file if you select to create a new domain in the same folder.  So rename your domain files once they've been created to something other than the default name.
    NOTE: In Lion and Mountain Lion the Home/Library folder is now invisible. To make it permanently visible in Lion or Mt. Lion enter the following in the Terminal application window: chflags nohidden ~/Library and press the Return key - 10.7: Un-hide the User Library folder.
    For Mavericks, 10.9,  go to your Home folder and use the View ➙ Show View Optionsmenu to bring the this window:

  • My coworker's external hard drive slowing down my computer

    Hello,
    I have a question. My coworker plugged in his external hard drive to my iMac with a USB, and he has to run its files everyday through network from his computer. The reason he does this is because his old iMac cannot read his newly formate external hard drive. I feel like my computer is slowing down. Is what he's doing slowing down my computer? Is there a way to not let the external drive using my CPU or memory? Is there a way to set it to low priority?
    Thanks.

    Since your current editing workflow is based around Virtual Copies there are no actual files containing the edit data. Therefore, you'll need to use the 'Import from another catalog' option ( see File menu).

Maybe you are looking for