Snippet
TIL: SAQL windowing for running totals
A running total in SAQL is just a windowing function over an ordered grouping: q = load "opportunities"; q = group q by 'CloseMonth'; q ...
#saql#analytics
Short, copy-pasteable code snippets and TILs.
A running total in SAQL is just a windowing function over an ordered grouping: q = load "opportunities"; q = group q by 'CloseMonth'; q ...