Sounds like a good idea. But I want to know ALL the values in the format, not just the ones that appear in my data.
I would guess this solution would be something along the lines of looking into the catalog with the formats??? But I don't know anything about catalogs. Any ideas, anyone?
To get all the formats you would use the proc format in the following way.
PROC FORMAT LIB=YOUR_LIB FMTLIB;
RUN;
This prints out all the values of a format in a format library. NOw if you want to match this data with your variables you can use the Proc contents results along with the above results. Let me know if you want to do that.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.