I'm importing data into SAS that is divided into columns by monetary value. The data in the columns is a count of how many people fit into that category.
Income_0-50K Income_50-100K Income_100K+
5 10 5
Once imported, I'd like to group the original data into only two columns to look like this:
Income_0_100K Income_100K+
15 5
How do I do this using PROC SQL?