Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
I want a Percentage of Total Personal & Trade 'N' as well Total Personal & Trade 'Y'(Refer the below table).
Account Type is a Calculated field.I wanted to create a % of Group field to show the percentage as i have mentioned in the below table.
First Funded Week | Week Ending 1/7/17 | ||
Account Type - Excluding Mgd. Accts | Trade | Number of Accts Funded | % of Group |
PERSONAL | N | 69,326 | 97% |
PERSONAL | Y | 2,186 | 3% |
Total Personal | 71,512 | ||
IRA - Internal Rollover | N | 6,493 | 96% |
IRA - Internal Rollover | Y | 305 | 4% |
Total IRA - Internal Rollover | 6,798 | ||
May be this?
Avg(TOTAL <[Account Type - Excluding Mgd. Accts]> [Number of Accts Funded])
[Account Type - Excluding Mgd. Accts] is a Calculated field IF(PAS_IND='Non PAS' AND REG_CAT_COARSE='PERSONAL', 'Personal', IF(PAS_IND='Non PAS' AND (REG_CAT_COARSE='IRA' AND POE_CAT='RETIRE INT ROLLOVER'),'IRA - Internal Rollover')) How do i apply this in the above mentioned formula?
May be this?
Avg(TOTAL Aggr(IF(PAS_IND='Non PAS' AND REG_CAT_COARSE='PERSONAL', 'Personal', IF(PAS_IND='Non PAS' AND (REG_CAT_COARSE='IRA' AND POE_CAT='RETIRE INT ROLLOVER'),'IRA - Internal Rollover', [Number of Accts Funded])), Dim1, Dim2))
Can you perform this calculation in the script to create a new field
If(PAS_IND = 'Non PAS' and REG_CAT_COARSE = 'PERSONAL', 'Personal',
If(PAS_IND = 'Non PAS' and (REG_CAT_COARSE = 'IRA' and POE_CAT = 'RETIRE INT ROLLOVER'), 'IRA - Internal Rollover')) as [Account Type - Excluding Mgd. Accts]
and then use this
Dimension
[Account Type - Excluding Mgd. Accts]
Trade
Expression
Sum(Measure)/Sum(TOTAL <[Account Type - Excluding Mgd. Accts]> Measure)