Displaying 3 results from an estimated 3 matches for "savechanges".
2009 Jul 09
1
R-help Digest, Vol 77, Issue 9
Hi,
This may be due to several reasons. That I can think about:
1) Ensure you close *all* possibly open workbooks:
nBooks <- xl[["Workbooks"]]$Count();
for (i in seq_len(nBooks))
xl[["Workbooks"]]$item(i)$Close(SaveChanges=FALSE);
2) The excel application reference does not seem to be really released until the garbage collector runs. So this may help:
xl$Quit();
xl <- NULL;
gc();
3) Ensure you don't have any "hanging" reference to the excel application (sometimes from previous runs of your cod...
2007 Nov 06
2
Error when adding content to es/Repositories page
Hi guys,
We already have some content to fill es/Repositories page ... When I
tried to do so, an error appears saying that I have no access to
change acl rights. That's rare to me because I'm just inserting
content, no #acl line there . Do you know what this could be ?
Thanks,
al.
2009 Jun 15
2
[OT] VBA to save excel as csv
Hi all,
This is a little off-topic, but it is on the general topic of getting
data in R. I'm looking for a excel macro / vba script that will
export all spreadsheets in a directory (with one file per tab) into
csv. Does anyone have anything like this?
Thanks,
Hadley
--
http://had.co.nz/