Hi all,
I would like to display delta value in the following scenario like this 8-2 =6.
The value 6 should be displayed in the next row. How to achieve this. Please advice.
Regards,
Chandra kanth.
Hi Chandra Kanth,
You can do it by creating a calculated column on an dimension.
Akansh
Hello Chandra,
You could use analytics functions, with LAG and LEAD.
Formulas:
1- Purchase Order: "ORDER"."PURCHASE ORDER"
2- Value Order: "EXECUCION"."VALUE ORDER"
3- Lag Column: EVALUATE('LAG(%1,1) over (order by %2)' as double, "EXECUCION"."VALUE ORDER" , "ORDER"."PURCHASE ORDER")
4- Delta Columna: "EXECUCION"."VALUE ORDER" - (EVALUATE('LAG(%1,1) over (order by %2)' as double, "EXECUCION"."VALUE ORDER" , "ORDER"."PURCHASE ORDER"))
AS your question do something like this,your delta Formula:
"Total Actions Count" - (EVALUATE(LAG(%1,1) OVER (order by %2)' as double, "Total Actions Count", "Plan" ))
Tip: To use EVALUTE FUNCTION you have to set up your NQSConfig.INI, set up the EVALUATE LEVEL.
Kind Regards.
César
Hi cesar,
The output should be displayed below (next row) NOT in next column. How to get value in the next row.
Regards
Hello chandra,
This delta row its just for this two plans? 28 29?
Or there is a possibility that you could compare 3, 4 plans?
Kind regards,
Cesar
Your use of information drives your physical data model design ... you need a fact table that is keyed to a dimension that has each iteration value ... you will calculate each row and the delta to it's corresponding row ... now you can show either value or both.
Do you know if connections that do not use TLS will be affected by the September 2026 update? Regards, Alison.
Hi Team, We would like to raise an enhancement request for the SSO/SAML configuration guidance for OAS 2026. We have already raised multiple SRs regarding OAS 2026 SSO configuration. However, we are facing difficulties getting the required guidance, as the available documentation does not clearly cover the OAS 2026 SSO…
We are planning to archive the Contract and Lease data currently sourced from the External Source as Contract and Lease accounting functions are being migrated to Oracle's CLM and Lease Accounting modules. At this stage, only active and partially closed records are being converted into Oracle and the remaining historical…
The difference column is a calculation, and I would like to average that row.
We are trying to convert our OAS reports to OAC and one of the parameters in the where clause of the report is what I am trying to make in OAC. I created a calculation as follows and I am trying to put it into a filter . The code validates EVALUATE('GREATEST ( TRUNC ( NVL (%1, TO_DATE (''1/1/2013'', ''mm/dd/yyyy'') ) ),…