Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
I want to display only total values in pivot table wherever my are same for each row irrespective of column position.
Regards,
Vijeta
Not sure I am clear as to what you are looking for. Do you have a sample you can provide with the expected output?
No Name Vendor Date value1 value2
1 n1 v1 28/09/2015 1243413 351355
2 n1 v1 28/09/2015 1243413 351355
total 1243413 351355
expected output,
No Name Vendor Date value1 value2
1 n1 v1 28/09/2015
2 n1 v1 28/09/2015
total 1243413 351355
Hi Vijeta,
Can you use this function
=If(Count(Distinct Field1) = 1, Null(), Sum(Amount))
this should work.
Thanks
Karthik
May be use dimensionality() and/or SecondaryDimensionality() functions to populate only totals
The second dimension... or how to use secondarydimensionality()