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