I need to get the total sum of a column the view is categorized based on the document Id. i was able to get the total sum of the entire column with the following code:
var myView:NotesView = database.getView("totalScore")
var nav:NotesViewNavigator = myView.createViewNav();
var entry:NotesViewEntry = nav.getLast();
return entry.getColumnValues()[7];
but i need the total sum of a particular category, how can i get the total for each category?