Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Community,
I need to put headings like I have attached.
In the worksheet(Table) - Data, and Output work sheet - looking output like that.
Hi Priya,
I think it doesn't exist a simple solution to avoid total in indent mode.
You can try adding a test with dimensionality in your expression, but this solution will be bad for the display perfomances.
Example :
=if(Dimensionality()>1,
sum(Field)
,'') // if total then change expression to empty string
See attached, almost matching
Hi Digvijay,
In indent mode, total will come but as per my requirement I don't need total...is there any way to avoid total in indent mode
Hi Priya,
I think it doesn't exist a simple solution to avoid total in indent mode.
You can try adding a test with dimensionality in your expression, but this solution will be bad for the display perfomances.
Example :
=if(Dimensionality()>1,
sum(Field)
,'') // if total then change expression to empty string
As Benoit suggested you can do like this -
if(Dimensionality()=1,'',<Your Exp>)