Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a Pivot where, I have a Dimension and some expressions. At the end of the Pivot I see a blank Column with all $0 0.0% 0 £0 etc for the respective columns. I just want to get rid of this as its not proper in my Pivot. Is there a special way to get rid of it as I tried all the basic steps from chart properties.
Thanks in Advance,
Mady
presentation ->
partial sum-> Uncheck it
Hello Sunil,
Thanks for the quick response, but as I said, I already tried all the basic settings and its of no use. Also I have suppressed the missing and zeros in expressions, but there are some null values in my dimension MONTH, which I cannot suppress as that changes my results. I think this is causing the problem. How can i ignore the null values from Month dimemsion without checking the Supress Null Values option.??
try out this
if(isnull(Month)=0,Month)
or
if( len(Month)>0,Month)
None of that works in my case... tried it. The first one gets only null and the 2nd one no change
can u share samplee
try changing every expression to this
sum(if(isnull(Month),0,YOURFIELD))
Go to the dimension tab, select the "MONTH" dimension and check the flag "Suppress When Value Is Null".
Hi Mady,
You can do it this way,
First add this expression
Dimensionality()
It will tell you the dimension level. For every rows it will show you a level.
Say your desired row that you want to omit shows level "0".
Then in all of you expression write this
if(Dimensionality()>0, "write your expression").
Hope I understood your requuirement properly.
Bikash Debnath
When I use Dimensionality () at the bottom of my expressions, I get all 1 and I cannot write any expression if its all 1 s including the blank column right?
Any other suggestions please?
Thanks Again,
Mady