Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
In pivot tabel I only want subtotals (the red marks below ..same as dimensionality()=1) when dim1 comes first.
If the user pulls dim2 to be dimensionality()=1 (at the yellow mark below) then I dont want any subtotals.
Is this possible?
You can't dynamically enable or disable subtotals, as far as I know. You can use expressions to return null instead of a figure in certain scenarios (e.g. if the first dimension is Dim1, return a subtotal, otherwise return null), using some combination of Dimensionality() and GetObjectDimension() in an If() statement, but the actual row will still be there.
You can't dynamically enable or disable subtotals, as far as I know. You can use expressions to return null instead of a figure in certain scenarios (e.g. if the first dimension is Dim1, return a subtotal, otherwise return null), using some combination of Dimensionality() and GetObjectDimension() in an If() statement, but the actual row will still be there.
@Or , thanks:)