sindhu murali 2 Posted July 28, 2016 Share Posted July 28, 2016 Hi all, I have a cross table where, some integer and string columns are used in the "cell value" axes. So when i do a grand total, i do get the grand total for the string values also. Is there any possibility to hide the grand total for string values alone. Thanks, Sindhu Link to comment Share on other sites More sharing options...
Andrew Berridge Posted July 28, 2016 Share Posted July 28, 2016 Hi Sindhu, Unfortunately this isn't possible at the moment. The way the grand total works is to use whatever expression you have used in the measure axis and apply it to all rows/columns in the data table. So your grand total becomes the equivalent First([My Column]) or whatever... Please can you submit a suggestion (after searching existing suggestions) tohttp://spotfireideas.tibco.com/ideas The idea needs to be more general though, as your specific example is only one area where this kind of thing can be a problem. We need to have control over the grand total expressions and allow separate sub/grand totals for each of the aggregated columns or rows. Or something like that... Thanks, Andrew (TIBCO Data Science) Link to comment Share on other sites More sharing options...
Scott Barclay 2 Posted December 5, 2018 Share Posted December 5, 2018 Late to the party here but for the benefit of folks still looking for a solution... For the given example you could do this for the column in question... case UniqueConcatenate([TABLE]) when "test1, test2, test3" then null else First([string data 3]) end This is really only viable for a known list of values used on your left axis. Be it known values in your data or the output of an expression. If you were feeling adventurous and need a solution for what would amount to a large or changing value for the UniqueConcatenat() to compare against you could replace ""test1, test2, test3" with a document property that gets calculated based on your marking and filtering. ie A column with all the students in a school. Link to comment Share on other sites More sharing options...
Dominique Feteau Posted April 13, 2020 Share Posted April 13, 2020 sbarclay Could you give an example of the document property method Thanks Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now