Categories
- All Categories
- 15 Oracle Analytics Sharing Center
- 16 Oracle Analytics Lounge
- 215 Oracle Analytics News
- 43 Oracle Analytics Videos
- 15.7K Oracle Analytics Forums
- 6.1K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 79 Oracle Analytics Trainings
- 15 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
Ho can we change the display type in a column in OBIEE to "change sign"?

We want to generate an income statement in OBIEE
Is there a way, like in Oracle eBS FSG's, to "change sign" to display data in a row/ column? We only want to change the way a particular row/ column DISPLAYS data without changing the underlying data itself.
This is to show Revenue account balances as positive number (with credit balances)?
Thanks!
Answers
-
Edit Formula and use Case When Statement will enable you to change the sign based on Account Range
0 -
You can create a new column Y in the BMM layer based on the incoming field X.
The formula to change the sign would be 0 - X, you can then expose this column in the presentation layer.
If you always want a +ve value then you can use ABS(X)
Mark Answered if this has helped
Richard
NeoData Australia
0 -
Thanks, Richard.
Building on your answer - on the income statement data column we have revenue and expense amounts - how would we only have the *rows* with revenue data displaying the data as positive number?
Can this BMM layer manipulation work on rows as well?
0 -
Do what @3055888 said: a CASE WHEN <account columns> = 'Revenue' THEN <your fact> * -1 ELSE <your fact> END
Of course all the options posted works: 0 - x, x * -1, ABS(x)
You are supposed to have a dimension or an attribute somewhere allowing you to identify your revenues to use as condition in the CASE WHEN.
0 -
You can also use ABS and 0 - measure in the column formula
Richard Chan
Neodata Australia
Sent from my iPhone
0