Problem:
I am trying to use the DDE facility in SAS to write some data to an existing workbook, but SAS becomes non responsive.
After opening the workbook D:\testfile.xlsx
in excel, I would normally run something like the code below (heavily simplified, yet still produces the error for me):
filename testfile dde "excel|[D:\testfile.xlsx]Sheet1!r1c1:r1c3" notab;
data _null_;
file testfile;
x = "hello";
put x;
run;
Previously, as in yesterday, this had worked flawlessly. Today, on the other hand, SAS becomes non-responsive and I have to kill it with task manager.
Note: I have seen on other message boards that having chrome in the background can cause this issue, but I have ensured that no chrome processes are running when this occurs.
Version Info:
- Windows 7 64bit SP1
- SAS 9.2 (base licence)
- Office 2010