Use one of the R-packages to read the file and then convert to CSV using this tool.
http://cran.r-project.org/doc/manuals/R-data.pdf Pg 12
Instead, the SAS7BDAT package is used. It seems to ignore the user format by reading the underlying data.
In SAS:
proc format; value agegrp low - 12 = 'Pre Teen' 13 -15 = 'Teen' 16 - high = 'Driver'; run; libname test 'Z:\Consulting\SAS Programs'; data test.class; set sashelp.class; age2=age; format age2 agegrp.; run;
In R:
install.packages(sas7bdat) library(sas7bdat) x<-read.sas7bdat("class.sas7bdat", debug=TRUE) x
Reeza source share