Hi guys, This can't be hard... but I am not finding a quick and clear solution. I want to concatenate a range of variables V1,V2,V3,V4...V18 with a single character '0' or '1' in each one into a new variable called RESULT, which will look, for example something like this: RESULT = '110101011010100111' I have 18 of these variables and Ireally don't want to use a format like: RESULT = cats(V1,V2,V3,V4, etc. etc) I don't want to strip out spaces or add commas or anything else, I just want to join the contents of all of the variables together. I am thinking the code must be something like: RESULT = cats(V1-V18); but I've tried variations on this to no avail. I am sure there's an easy answer, can anyone help me here please? Thanks A
... View more