Hi Sir, Thanks for the great teaching I have 2 column and I’m looking for those data values in which (mom_num)=baby(num) +prefix B, could you please tell me, how can I code that in SAS? mom_num baby_num 12 . 32 . 14 B14 17 B17 … For exp, I need 14=B14 17=B17
Thank you very much for clear explanation
You are welcome
tq. sir. use full stuff for beginners . keep posting
Thanks Krishna
Hi Sir, Thanks for the great teaching
I have 2 column and I’m looking for those data values in which
(mom_num)=baby(num) +prefix B, could you please tell me, how can I code that in SAS?
mom_num baby_num
12 .
32 .
14 B14
17 B17
…
For exp, I need
14=B14
17=B17
Hi, I am assuming mom_num is string field. You can use this code baby_num=cats('B',mom_num)
@@analyticsschool Thank you so much