Types/Dice.Roll/get_Average.ps1

if ($this.Table -and 
    $this.Table.Columns -and 
    $this.Table.Columns['Roll']
) {
    $this.Table.Compute('AVG(Roll)','')
}