R Excel Out Karl Lum  2016-09-06 11:14
Status: Closed
 
Hi David,

If you are already using the xlsx package to generate the excel file from your R script, you should still be able to use the fileout substitution to make the download available to your users as an excel file. Would something like this work?

require(xlsx)
write.xlsx(labkey.data, "${fileout:myExcelFile.xlsx}")

thanks, Karl