Categories
- All Categories
- 15 Oracle Analytics Sharing Center
- 14 Oracle Analytics Lounge
- 211 Oracle Analytics News
- 41 Oracle Analytics Videos
- 15.7K Oracle Analytics Forums
- 6.1K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 78 Oracle Analytics Trainings
- 14 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
CUME IN OBIEE 12c

Hello:
While migrating our Brio report to OBI. There is CUME function within Brio that is not available in OBIEE, how can I use CUME in OBIEE?
I need to sum values until I find a breakcol,
Thanks
Answers
-
Can you define exactly what "CUME" is supposed to do?
Or the full need you have which was covered by "CUME" ?
0 -
3744064 wrote:I need to sum values until I find a breakcol,
Can you make an example please? How does CUME work?
0 -
The Cume function returns a cumulative running total for each value in a column of numbers.
numbers references the column that contains the numbers on which the cume is calculated.
break_col is a parameter that references a break column.
Example:
CUME (Amount, State)
The results are shown in the Computed column
STATE CITY AMOUNT COMPUTED
AZ
0 -
In OBIEE you can use sum by in the formula; -
sum(yourFact.YourMeasure by State)
https://stackoverflow.com/questions/27066406/summing-by-column
0 -
Better reference; -
0 -
Thanks but OBIEE 12c doesn´t aloud that sintaxys:
nQSError:27002 Cerca de <by>: error de sintaxis nQSError:26012
and that´s my problem..
0 -
Okay, see my other responses on your other thread, again in the rpd duplicating your existing sum measure and pinning it to state would be a good alternative.
0 -
Hi,
Please refer the following thread,
Use the following function like,
RSUM(Measure BY DIm.Col)
eg.
RSUM(Amount BY STATE)
Regards,
Mayur
0 -
That syntax is not allowed in obiee 12c, you can´t use by
0 -