我一直试图将NI TDMS文件导出到我的工作簿中,并找到了詹姆斯·汉弗莱(James Humphrey)发布的vba代码,这正是我想要的。问题是,每当我尝试运行代码时,都会出现运行时错误,该错误基本上表示只有管理员才能执行代码。
附件是错误和我在James Humphrey帖子中使用的代码的片段。
由于我不是管理员,因此有人可以解决此问题吗?谢谢。
$chunk = 3;
$nbToPrepend = ($chunk - count($array) % $chunk);
$prepend = array_fill(0, $nbToPrepend, null);
$result = array_chunk(array_merge($prepend, $array), $chunk);
$result[0] = array_slice($result[0], $nbToPrepend);