I would like to modify the code below such that each frequency table is appended to the previous one and the appended final tables to be exported to a single spreadsheet.
foreach v in `factor' {
fre `v'
}
fre `v'
}
Comment