Categories
- All Categories
- 134 Oracle Analytics News
- 24 Oracle Analytics Videos
- 14.6K Oracle Analytics Forums
- 5.6K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 51 Oracle Analytics Trainings
- 9 Oracle Analytics Data Visualizations Challenge
- 4 Oracle Analytics Career
- 3 Oracle Analytics Industry
- Find Partners
- For Partners
OBIEE 11g Group By

I have a Table with columns
Business_Date | Month | Year | Amount |
---|---|---|---|
25-Sep-2016 | Sep | 2016 | 34325.45 |
26-Sep-2016 | Sep | 2016 | 42532.34 |
01-Oct-2016 | Oct | 2016 | 67243.36 |
02-Oct-2016 | Oct | 2016 | 99347.87 |
i want to display data in report as like
Month | Year | Max(Amount) |
---|---|---|
Sep | 2016 | 42532.34 |
Oct | 2016 | 99347.87 |
i've tried MAX(AMOUNT BY MONTH) but it now works for me
can anyone help me with this.
Thanks in advance,
Uma Mahesh.
Answers
-
Your logical date dimension needs a hierarchy where month is keyed logically higher to date ... then BI server will aggregate the measure based on the aggregation rule supplied in the fact logical column and from/to the levels you've specified in the Content tab of the fact logical table source properties.
Once it's modeled right, the aggregation happens automatically to the grain of the query.
0 -
hi Thomas,
Thanks for Quick reply
but i have some dimension columns too in that table like ACCOUNT_NO
what i want exactly is a Report With ACCOUNT_NO filed and MAX of AMOUNT AS Per Dates in a MONTH
0 -
So you have mixed logical dimensional attributes? you should have a fact (amount) joined to both a date (year, month, date) and an account (account number, first name, last name, etc) dimension.
OBIEE requires at the very least a well-formed logical star model to perform to its advertised features and performance levels.
0 -
Thanks for your support Thomas
0