Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I have two tables SALTable and COMMTable and want to do SAL % with COMM/SAL and GRADE.
SAL column have the nulls.
How to achieve the same in report front end as shown below reports.
Please help me. Thanks in advance.
SAL%:
=(Sum({<Year=, Quarter=, Month=,DATE={'>=$(=vStartDate)<=$(=vMaxDate)'}>} SAL)
/
(Sum({<Year=, Quarter=, Month=,DATE={'>=$(=vStartDate)<=$(=vMaxDate)'}>} COMM)))
GRADE:
if(SAL%>=0 AND SAL%<0.1,'0%-10%',
if(SAL%>=0.1 AND SAL%<0.2,'10%-20%',
if(SAL%>=0.2 AND SAL%<0.3,'20%-30%',
if(SAL%>=0.3 AND SAL%<0.4,'30%-40%',
if(SAL%>=0.4 AND SAL%<0.5,'40%-50%',
if(SAL%>=0.5 AND SAL%<0.6,'50%-60%',
if(SAL%>=0.6 AND SAL%<0.7,'60%-70%',
if(SAL%>=0.7 AND SAL%<0.8,'70%-80%',
if(SAL%>=0.8 AND SAL%<0.9,'80%-90%',
if(SAL%>=0.9 AND SAL%<1.0,'90%-100%')
Required Report Output:
PFA file for solution.
Regards,
Jagan.
Always remember that all the tables in the Datamodel should be linked otherwise if you use those dimensions the values won't split according to dimension.
Regards,
Jagan.
Thank you All.