# File lib/Borges/Report/ReportColumn.rb, line 100
  def total_for_rows(aCollection)
    unless @hasTotal then
      ''
    else
      @formatBlock.call(aCollection.detectSum do |r|
        self.valueForRow(r)
      end)
    end
  end