Hi everyone, A very good day! Let us say I have a dataset: Name| Var1| Var2 | Var3 A |23 |25 |28 B |45 |33 |32 C |23 |65 |67 D |13 |14 |14 E |65 |66 |69 Where Name is character and Var1-3 are numeric. Problem: If the name is equal to A or B, all the numeric values should be multiplied by 100. Is it possible to do it without looping or arrays. Something of the nature, If Name IN ("A" "B") then do; _numeric_ *100; RUN; This is just a run of the mill thought and doesn't mean it is right! Any other solutions welcome. Regards, Kavindra
... View more