Categories
- All Categories
- 75 Oracle Analytics News
- 7 Oracle Analytics Videos
- 14K Oracle Analytics Forums
- 5.2K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 40 Oracle Analytics Trainings
- 60 Oracle Analytics Data Visualizations
- 2 Oracle Analytics Data Visualizations Challenge
- 3 Oracle Analytics Career
- 4 Oracle Analytics Industry
- Find Partners
- For Partners
how to Implement this: column formula = GROSS SALES/SUM(GROSS SALES BY SEGMENT,PERIOD)
Guys how to implement this:
column formula = GROSS SALES/SUM(GROSS SALES BY SEGMENT,PERIOD)
Gross sales - Invoice amount
Segement: CASE WHEN "Inventory Organization"."Inventory Org Code" = 'KAD' THEN ' H & H' WHEN "Inventory Organization"."Inventory Org Code" in ('BAN','USA') THEN 'Bty' END
Period: Fiscal Period.
How can we implement above formula in obiee report column.
Answers
-
It looks like you already have it there, but I'm a bit confused by this line in your question: "Gross sales - Invoice amount".
If that is meant to be "Gross Sales = Invoice amount", then your formula would look something like:
"Your table"."Invoice amt"/SUM("Your table"."Invoice amt" by CASE WHEN "Inventory Organization"."Inventory Org Code" = 'KAD' THEN ' H & H' WHEN "Inventory Organization"."Inventory Org Code" in ('BAN','USA') THEN 'Bty' END,"Your table"."Fiscal Period").
It's easier to build these if you have separate columns for the components of a complicated formula. Then, you can assemble them using the "Column" selector in the formula editing window:
0 -
Even I have implemented the same logic. Thank you @Jerry Casey.
0