Summary Report
Posted: August 10th, 2016, 2:24 am
Good Day
1. I tried to use this logic so i can get a summary report on the household Questionnaire.
2. I would also like to include household Roster into this summary pointing out 1. Person no and Individual number from the roster.
Thanks.
1. I tried to use this logic so i can get a summary report on the household Questionnaire.
2. I would also like to include household Roster into this summary pointing out 1. Person no and Individual number from the roster.
Thanks.
Code: Select all
// Write out and display household summary report
function showHouseholdReport()
string reportFilename = maketext("%sreport.txt", pathname(Application));
setfile(tmpFile, reportFilename);
filewrite(tmpFile, "Household Summary Report");
filewrite(tmpFile, "------------------------");
filewrite(tmpFile, "");
filewrite(tmpFile, "District %d Village %d Household Number %d",
visualvalue(HH_DISTRICT),
visualvalue(HH_SMALL_AREA_LAYER),
visualvalue(HH_QNR_NO));