I want to hide the grand total row in views using @formula or lotusscript.
How should I do this?
I want to hide the grand total row in views using @formula or lotusscript.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There’s no Formula or LotusScript for hiding the grand total in a view, but I found a work-around for the cases where the grand total does not make business sense at all and would only confuse the users.
Displaying the view as an embedded view in a form, using
Show single categoryleaves out the grand total row. You may need to use this view only as embedded view and have otherwise useless fixed category for all documents (i.e. put"1"in the formula for the categorized column and use the same inShow single category). You’ll also need theSaveOptionstext field with default value"0"so the users don’t get dialog asking whether they want to save the document (after all, for them this is a view) and the lineContinue = Falsein theQuerySaveevent.Then you need to find how to best integrate this with the other views – maybe use
Auto framein the form properties if your application uses framesets. The users may not be able to tell the difference.Seems like a lot of work for removing one line from the view but I am not aware of another way to hide it and sometimes it’s worth the added complexity.
Does that help?