Hello,
Assume I have two variables Region and Oceania with large observation. Example:
Region Oceania
North America 0
Asia 0
Europe 0
Australia 1
New Zealand 1
I'd like to change the "Australia" and "New Zealand" to "Oceania" by using this command.:
replace Region = "Oceania" if Oceania = 1.

But this doesn't work. Can somebody help me out from this problem?
Thank You