In my study, I am using two identifiers because some databases require a specific identifier. However, one of the identifiers, CompanyID, has missing values in some observations.
When I attempt to merge datasets using CompanyID, the merge does not work due to these missing values. Could you advise on how to resolve this issue without deleting the observations that have missing CompanyID?
I appreciate your help and look forward to your guidance.
When I attempt to merge datasets using CompanyID, the merge does not work due to these missing values. Could you advise on how to resolve this issue without deleting the observations that have missing CompanyID?
I appreciate your help and look forward to your guidance.
HTML Code:
. merge 1:1 CompanyID year using "C:\Users\lenovo\Desktop\Data\source\DATA\work\third analysis\Governance\final_governance_varaibles.dta" variables CompanyID year do not uniquely identify observations in the master data r(459); . order id year ticker CompanyID
Comment