Sorry if this is rant-ish Anyway, I am trying to do a simple summary statistics on my data set. However, all of the variables are of type char when I need some of them to be numeric. So I am trying to change their type but for the life of me cannot figure out how. Furthermore, I am also overthinking it to some extent as the variable names in the table contain white spaces and the values are of the form: $65,000.00 -- with that said, to me at least I think I need to remove the dollar sign, the comma, and the decimal point and its following digits. In the example to change types, all the data is being created in the proc and not pulled in from a table. I tried something like the following: data work.import1; set work.import1; But I do not know how to reference the variables in work.import1 because of the whitespace.
... View more