我正在尝试通过VBA向单元格添加公式,但只是在没有进一步信息的情况下获取 Runtime-Exception 1004 。
Cells(4, 3).Formula = "=IF('Mustermann, Max'!C13="""";"""";""impacting team targets"")"
我的配方有问题吗?
答案 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);
}