Hello guys,
I need some kind of help. I download the full data but only need with SIC Code 2000 - 3999 (SIC Range) and exclude SIC codes ending with 0 and 9.
I think I can use
"drop if sic<2000
drop if sic>3999"
for the first condition. But I still can't figure it out how to satisfy the second condition (exclude SIC codes ending with 0 and 9) with a (simple) code. I really appreciate any kind of help.
Thank you.
I need some kind of help. I download the full data but only need with SIC Code 2000 - 3999 (SIC Range) and exclude SIC codes ending with 0 and 9.
I think I can use
"drop if sic<2000
drop if sic>3999"
for the first condition. But I still can't figure it out how to satisfy the second condition (exclude SIC codes ending with 0 and 9) with a (simple) code. I really appreciate any kind of help.
Thank you.
Comment