我正在尝试将公式插入宏中,但是当我运行宏时,它会陷入公式。这是我使用的格式:
_rollbarConfig = {
// current config...
checkIgnore: function(isUncaught, args, payload) {
if (window.navigator.userAgent && window.navigator.userAgent.indexOf('Baiduspider') !== -1) {
// ignore baidu spider
return true;
}
// no other ignores
return false;
}
}
答案 0 :(得分:0)
问题出在引号上,因为它们搞乱了字符串。尝试用CHR(34)替换它们
ThisWorkbook.Sheets("Sheet1").Range("B5").Value = "=IF(ISERROR(ROUND(AVERAGE(D16:D75),3))," & CHR(34) & CHR(34) & ", ROUND(AVERAGE(D16:D75), 3))"
最终你可以使用加倍的引号(“”“”),但我觉得很难读。