myOwn.TableAggregates.max.prototype.acum=function acum(value){
    if(value!=null){
        if(this.value==null || this.value<value){
            this.value = value;
        }