SAS works on the principal that one column holds one data item, not several data items. In your case you have two data items in one column, an upper and lower bound separated by a delimeter, which means to use each of those data items you need to split the data. It would be better practice to have one column for lower, and one for upper.
... View more