Displaying 1 result from an estimated 1 matches for "detailedl".
Did you mean:
detailed
2013 Mar 05
0
Meaning of error message when exporting to MS Excel
...all parts of data ? PracticeName is removed from example
data for privacy reasons
detailedH<-dataExport2[dataExport1$PracticeName == i &
dataExport1$RISK_LEVEL == 'High',]
detailedM<-dataExport2[dataExport1$PracticeName == i &
dataExport1$RISK_LEVEL == 'Medium',]
detailedL<-dataExport2[dataExport1$PracticeName == i &
dataExport1$RISK_LEVEL == 'Low',]
print(paste(i,"2"))
x<-paste(i,".xls",sep="")
#Open excel template
xl.workbook.open("Template.xls")
#Create practice specific file
xl.workbook.save...