Hi all,
I am just wondering if anyone could help me.
At the moment, I have employment data for different industries for multiple waves. What I'd like to do is append each 'tabulate' to an Excel table. Is this possible? My code is currently like this:
What I'd like is the industries as different rows (Agriculture, Manufacturing, Mining etc) and the different waves being different columns (Wave 1, Wave 2), and then after after each 'tabulate' (there are 31 of them!), the data is appended to the correct column.
I am just wondering if anyone could help me.
At the moment, I have employment data for different industries for multiple waves. What I'd like to do is append each 'tabulate' to an Excel table. Is this possible? My code is currently like this:
Code:
set more off forval x=9/39 { tab jobindcode if wave==`x' & employerAll==0 [iw=ceweight2] }
Comment