def saveReportAsSpreadtsheet(self):
     
     # write report in a spreadsheet file
     report = HouseholdsByCharacteristicsWrite()
     report.writeSpreadsheetReport(self.rtable)
 def writeSpreadsheet(self):
         ''' Creates a Spreadsheet showing hoseholds that fit selected criteria '''
         reportatble = self.getReportData()
         connector = HouseholdsByCharacteristicsWrite()
         connector.writeSpreadsheetReport(reportatble)