I have a daset like this
IncidentID | MENSEX | MaleSexPartners |
1 | 1 | 0 |
2 | 10 | 0 |
3 | 1 | 1 |
4 | 1 | 0 |
5 | 2 | 0 |
7 | 5 | 5 |
10 | 5 | 0 |
12 | 5 | 0 |
13 | 5 | 0 |
I would like to copy variable from MENSEX variable to malesexpartners variable ONLY if malesexpartners's value is "0". I want my data to look like this
IncidentID | MENSEX | MaleSexPartners |
1 | 1 | 1 |
2 | 10 | 10 |
3 | 1 | 1 |
4 | 1 | 1 |
5 | 2 | 2 |
7 | 5 | 5 |
10 | 5 | 5 |
12 | 5 | 5 |
13 | 5 | 5 |
Please help me. Thank you
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.