clear
input long ID str100 org_name str16 datasource
1234456 "Helping Hand" "Survey1"
1234456 "Helping Hand" "Survey2"
9089081 "Save Children" "Survey1"
9089081 "Save Children" "Survey2"
9089081 "Save Children" "Survey3"
4532901 "Planet Earth" "Survey1"
end
I am interested in creating a list of organizations that have participated in all three surveys survey1, survey2 & survey3 (variable - data source). So basically, knowing the # of organizations that participated in three surveys, or just two or one.
In the end, a new dataset from the master dataset of organizations based on data source based on the organizations which took all three surveys, or two, etc.
Thanks in advance!
input long ID str100 org_name str16 datasource
1234456 "Helping Hand" "Survey1"
1234456 "Helping Hand" "Survey2"
9089081 "Save Children" "Survey1"
9089081 "Save Children" "Survey2"
9089081 "Save Children" "Survey3"
4532901 "Planet Earth" "Survey1"
end
I am interested in creating a list of organizations that have participated in all three surveys survey1, survey2 & survey3 (variable - data source). So basically, knowing the # of organizations that participated in three surveys, or just two or one.
In the end, a new dataset from the master dataset of organizations based on data source based on the organizations which took all three surveys, or two, etc.
Thanks in advance!
Comment