Thanks for your reply! I understand what you're saying. The databases I talk about are databases in SAS format. And I have (hopefully) basic knowledge of SAS. That's why I think I'm missing something here.. When I do this: DATA m.combined;
SET m.database X (keep=height respo)
m.database Y (keep=height respo);
RUN; I get these errors: ERROR: The variable height in the DROP, KEEP, or RENAME list has never been referenced. ERROR: The variable respo in the DROP, KEEP, or RENAME list has never been referenced. ERROR: The variable height in the DROP, KEEP, or RENAME list has never been referenced. ERROR: The variable respo in the DROP, KEEP, or RENAME list has never been referenced. What does this mean? I look for it on the internet, but can't solve it for my own data. Database X and Y both have the variables height and respo in them.
... View more