通过VBA添加公式会引发Runtime-Exception

时间:2015-11-23 07:09:45

标签: excel vba excel-vba

我正在尝试通过VBA向单元格添加公式,但只是在没有进一步信息的情况下获取 Runtime-Exception 1004

Cells(4, 3).Formula = "=IF('Mustermann, Max'!C13="""";"""";""impacting team targets"")"

我的配方有问题吗?

1 个答案:

答案 0 :(得分:1)

需要使用逗号代替Semikolon。

private void configureCache() {
    if (cache == null)
        cache = createHttpClientCache(context);

    mHttpClient.setCache(cache);
    mHttpClient.networkInterceptors().add(REWRITE_CACHE_CONTROL_INTERCEPTOR);
}

private static Cache createHttpClientCache(Context context) {
    File cacheDir = context.getDir("cache_api", Context.MODE_PRIVATE);
    return new Cache(cacheDir, HTTP_CACHE_SIZE);
}