Dear visitor, welcome to Palo Community Forum. If this is your first visit here, please read the Help. It explains in detail how this page works. To use all features of this page, you should consider registering. Please use the registration form, to register here or read more information about the registration process. If you are already registered, please login here.
Date of registration: Feb 21st 2007
Location: Lytham UK
Occupation: OLAP consultant specialising in retail
|
|
Source code |
1 2 3 4 5 6 7 |
['Cumulative Sales'] = N:
IF(
PALO.EINDEX("OSImpact","Time",!'time') == 1,
['Sales'],
PALO.DATA("OSImpact","Test","Cumulative Sales",PALO.ENAME("OSImpact","Time",PALO.EINDEX("OSImpact","Time",!'Time') - 1)) + ['Sales']
)
|

|
|
Source code |
1 2 3 4 5 6 |
['Cumulative Sales'] = N:
IF(
(!'Time') == PALO.EFIRST("OSImpact","Time"),
['Sales'],
PALO.DATA("OSImpact","Test","Cumulative Sales",PALO.EPREV("OSImpact","Time",!'Time')) + ['Sales']
)
|
This post has been edited 1 times, last edit by "Pommie" (Mar 6th 2012, 5:31pm)
Date of registration: Jul 13th 2009
Location: Vienna / Austria
Occupation: Senior Consultant @ Vector SW DV GmbH
Date of registration: Feb 21st 2007
Location: Lytham UK
Occupation: OLAP consultant specialising in retail
This post has been edited 1 times, last edit by "Pommie" (Mar 12th 2012, 11:42am) with the following reason: Additional information added
Date of registration: Jul 13th 2009
Location: Vienna / Austria
Occupation: Senior Consultant @ Vector SW DV GmbH
you'd need an ETL to do cumulatives in a dimension structure in a way that kept you sane, and that isn't available in the CE
it is self maintaining and thus reduces the margin for admin error when time periods are added
why the calculations that used to work don't any more
Date of registration: Feb 21st 2007
Location: Lytham UK
Occupation: OLAP consultant specialising in retail
Ah yes - my fault - I downloaded the suite, ran setup.exe and was surprised not to see any install of the ETL. I have worked out now that setup.exe is just the Palo for excel set up isn't it :-) I can't find the 3.2 CE manual and the 3.3 manual is obviously rather different, and I found installing from memory to be a challenge!
Quoted
Fortunately you are wrong here. You can use ETL Server in Palo Suite (fka CE).
Can you be more specific? I have to confess to being uncomfortable with things that rely on maintenance routines being executed. As with TM1 I am sure Palo's dimension consolidations are faster than rule based calculations but generally performance was quite acceptable in my model (and that was without markers). As with most design issues there is a trade off between maintainability / usability and efficiency.
Quoted
That can be done through ETL by adding only one calendar extract to your existing time dimension definition.
"OSImpact","Time",!'Time') == 1,['Sales'],PALO.DATA("OSImpact","Test","Cumulative Sales",PALO.ENAME("Test","Time",PALO.EINDE
"Test","Time",!'Time') - 1)) + ['Sales'])Without a manual I am having fun getting the web / ETL stuff to run. If anyone can point me to a manual that explains it all for 3.2 CE I would be most grateful.
Thanks Djordja
All I can see on that page s the "What's new" PDF document and the software download links. I can't see a manual. Am I missing something?
Date of registration: Feb 21st 2007
Location: Lytham UK
Occupation: OLAP consultant specialising in retail
Thanks again Djordja
Unfortunately my German isn't up to translating a technical manual. I rarely get past ordering a beer before start to reach the limits of my German vocabulary :-)
The equivalent link from the sitemap to http://www.jedox.com/en/jedox-downloads/…ns-archive.html gives a 404 error I am afraid so i am still stuck.


Could you please show me how to do this, or point me to the right piece of documentation or example?That can be done through ETL by adding only one calendar extract to your existing time dimension definition.
Date of registration: Jul 13th 2009
Location: Vienna / Austria
Occupation: Senior Consultant @ Vector SW DV GmbH