function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
petec@i2isyspetec@i2isys 

Does anyone know what I would have to add to this SAQL code in order to summarize the stage columns at the bottom of the chart?

q = load "i2i_Opportunities_with_Accounts_and_Users";
q = filter q by 'StageName' in ["2-Align", "3-Consensus", "4-Negotiate", "5-Pending Contract"];
q = group q by rollup('OwnerId.Name', 'StageName');
q = foreach q generate
    (case
        when grouping('OwnerId.Name') == 1 then "All Reps"
        else 'OwnerId.Name'
    end) as 'OwnerId.Name',
    (case
        when grouping('StageName') == 1 then "Total for Reps"
        else 'StageName'
    end) as 'StageName',
    sum('TCV__c') as 'sum_TCV__c';
q = order q by 'OwnerId.Name' asc;
q = limit q 2000;

This code give me the chart below but would love to summarize the stage columns at the bottom.

User-added image
SwethaSwetha (Salesforce Developers) 
HI Petec,
Does using aggregate functions mentioned in https://developer.salesforce.com/docs/atlas.en-us.bi_dev_guide_saql.meta/bi_dev_guide_saql/bi_saql_functions_aggregate.htm help? Thanks
hsia as saksiehsia as saksie
Is this good practice to use this script service in dynamic hosted website? I'm asking for my coffee blog, you can see here  (https://thebestcoffeebeans.net/best-coffee-beans-for-espresso/)