首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
社区首页 >问答首页 >SAS -通过DDE在Excel文件中执行查找和替换

SAS -通过DDE在Excel文件中执行查找和替换
EN

Stack Overflow用户
提问于 2013-05-09 17:12:32
回答 2查看 1.5K关注 0票数 0

我正在试着写一个SAS程序,通过DDE在excel文件中进行查找和替换。具体地说,我试图在标题行中搜索字符串之间的空格(即""),并将它们替换为没有空格(即“")。

例如,如果我有一个包含“测试名称”的单元格,我想做一个查找和替换,使其成为"TestName“。

这就是我所拥有的:

代码语言:javascript
运行
AI代码解释
复制
options noxwait noxsync;

/* Open Excel */
x '"C:\Program Files (x86)\Microsoft Office\Office14\excel.exe"';
filename cmds dde 'excel|system';
data _null_;
    x=sleep(5);
run;

/* Open File and Manipulate*/
data _null_; 
    file cmds; 
    put '[open("C:\filename.xls")]'; 
    put '[select("R1")]';
    put '[formula.replace(" ","",1,,false,false)]'; 
run;

/*Close File*/
data _null_;
    file cmds;
    put '[FILE-CLOSE("C:\filename.xls")]';
    put '[QUIT()]';
run;

查找和替换功能不起作用。在读取该语句后,我在日志中得到以下内容:

代码语言:javascript
运行
AI代码解释
复制
NOTE: The file CMDS is:
    DDE Session,
    SESSION=excel|system,RECFM=V,LRECL=256

ERROR: DDE session not ready.
FATAL: Unrecoverable I/O error detected in the execution of the DATA step program.  
    Aborted during the EXECUTION phase.
NOTE: 2 records were written to the file CMDS.
    The minimum record length was 21.
    The maximum record length was 70.
NOTE: The SAS System stopped processing this step because of errors.
NOTE: DATA statement used (Total process time):
    real time           0.63 seconds
    cpu time            0.00 seconds

有什么建议吗?

另外,有人知道formula.replace语句中的参数是什么吗?我只知道第一个和第二个是你想要找到的,也是你想要替换它的。我正在努力寻找任何文档。

EN

回答 2

Stack Overflow用户

回答已采纳

发布于 2013-05-09 17:44:58

我的建议是编写一个excel (VBA)宏,然后调用该宏;这不仅为您提供了一个更好的IDE来编写代码,获取上下文线索等,而且还为您提供了更多的控制。你可以从单独的工作簿调用宏,所以即使这是你必须重复做的事情(我假设是这样),你也可以把它放在一个‘宏’模板工作簿中,这个模板工作簿是从自动文件中单独打开的。

票数 0
EN

Stack Overflow用户

发布于 2014-10-28 07:49:39

http://www.lexjansen.com/wuss/2007/ApplicationsDevelopment/APP_SmithC_ImportingExcelFiles.pdf

如果输入的路径或文件名不正确,Excel将无法打开您的工作簿。您将在SAS日志中看到一条错误消息,如下所示:

代码语言:javascript
运行
AI代码解释
复制
NOTE: The file DDECMD is:
      DDE Session,
      SESSION=excel|system,RECFM=V,LRECL=256
ERROR: DDE session not ready.
FATAL: Unrecoverable I/O error detected in the execution of the data step program.
       Aborted during the EXECUTION phase.
NOTE: 0 records were written to the file DDECMD.
NOTE: The SAS System stopped processing this step because of errors.
票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/16467300

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档
查看详情【社区公告】 技术创作特训营有奖征文