Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I got a pivot that sums total spend amount for various FY and I would like to exclude nulls from Sub Rollup without adding this field as dimension. Is this the correct syntax?
I think, I might have made a mistake with the 1st two... try these
{<DRVD_PRD_SUB_ROLLUP = {'*'},....
or
{<DRVD_PRD_SUB_ROLLUP -= {"=Len(Trim(DRVD_PRD_SUB_ROLLUP )) > 0"},....
Is it true null or does it says NULL? For true null, try one of these:
{<DRVD_PRD_SUB_ROLLUP -= {'*'},....
or
{<DRVD_PRD_SUB_ROLLUP = e({<DRVD_PRD_SUB_ROLLUP = {'*'}>}),....
or
{<DRVD_PRD_SUB_ROLLUP -= {"=Len(Trim(DRVD_PRD_SUB_ROLLUP )) > 0"},....
Thanks Sunny! I'll try all three. Btw, what is the "e" for in this example?
{<DRVD_PRD_SUB_ROLLUP = e({<DRVD_PRD_SUB_ROLLUP = {'*'}>}),....
I think, I might have made a mistake with the 1st two... try these
{<DRVD_PRD_SUB_ROLLUP = {'*'},....
or
{<DRVD_PRD_SUB_ROLLUP -= {"=Len(Trim(DRVD_PRD_SUB_ROLLUP )) > 0"},....
e means exclude and p mean possible. Look at the attached document for more details on e and p
So these two will exclude true null DRVD_PRD_SUB_ROLLUP ?
<DRVD_PRD_SUB_ROLLUP = {'*'},.... worked but the others did not.
I left the - negative sign by mistake... should have been this
{<DRVD_PRD_SUB_ROLLUP = {"=Len(Trim(DRVD_PRD_SUB_ROLLUP )) > 0"},....
Oh ok. Thanks!