免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 3163 | 回复: 3
打印 上一主题 下一主题

perl OpenOffice::OOCBuilder插入公式的问题,着急! [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2013-12-24 10:30 |只看该作者 |倒序浏览

向openoffice的sxc格式插入数据,OpenOffice::OOCBuilder这个模块很好用,但是我遇到一个问题,我要把两个单元格内容连接起来,我用了

$sheet->set_data_xy ($column,$row,"=E$row&F$row",'formual');

结果在sxc中显示出来的是=E36&F36
而不是把两个单元格的内容连接之后的内容,这是怎么回事啊,程序就差这一步了,求帮助

论坛徽章:
0
2 [报告]
发表于 2013-12-25 08:42 |只看该作者
太搞了啊,把formula这个单词写错了啊回复 1# feiying00917


   

论坛徽章:
145
技术图书徽章
日期:2013-10-01 15:32:13戌狗
日期:2013-10-25 13:31:35金牛座
日期:2013-11-04 16:22:07子鼠
日期:2013-11-18 18:48:57白羊座
日期:2013-11-29 10:09:11狮子座
日期:2013-12-12 09:57:42白羊座
日期:2013-12-24 16:24:46辰龙
日期:2014-01-08 15:26:12技术图书徽章
日期:2014-01-17 13:24:40巳蛇
日期:2014-02-18 14:32:59未羊
日期:2014-02-20 14:12:13白羊座
日期:2014-02-26 12:06:59
3 [报告]
发表于 2013-12-25 09:48 |只看该作者
本帖最后由 jason680 于 2013-12-25 09:51 编辑

回复 2# feiying00917

1. check the package OpenOffice::OOCBuilder source code
http://cpansearch.perl.org/src/MAYGILL/OpenOffice-OOBuilder-0.09/OOCBuilder.pm

it check the type, but didn't have any warnings when you gave the wrong type
  # - check type
  my ($ok);
  if ($type) {
    $type=lc($type);
    foreach (@TYPES) {
       if ($type eq $_) {
         $ok=1;
         last;
      }
    }
  }
  $type=$TYPES[0] if (! $ok);  # take $TYPES[0] as default type


2. you can use constant function to check type by yourself


use strict;
use warnings;
use constant formula => 'formula';

print formula;
#print formual;

   

论坛徽章:
0
4 [报告]
发表于 2013-12-26 08:12 |只看该作者
多谢,领教了回复 3# jason680


   
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP