Tag: 综合报告

从JSON转置为优秀如何取整?

我有excel脚本和jason页面,不要让这个巨大的im只是放置重要的东西。 function pull(toonName,toonRealm) { if(!toonName || !toonRealm) { return "" } var toonJSON = UrlFetchApp.fetch("us.battle.net/api/wow/character/"+toonRealm+"/"+toonName+"?fields=items,talents,statistics,stats,progression,audit") var toon = JSON.parse(toonJSON.getContentText()) var getStats = function(sta) { var crit = sta.crit, haste = sta.haste, mastery = sta.mastery, spirit = sta.spr, multi = sta.multistrike, vers = sta.versatilityDamageDoneBonus return [crit, haste, mastery, spirit, multi, vers] } var Stats = getStats(toon.stats) […]

多列查找并返回下一列的相应值(最近值)

这是我想要完成的,我有两张纸: 参考表: 点击查看图像 Code Length Width Height A 78 48 25 B 78 48 34 C 12 7.4 5 D 12 15 5 E 12 15 7.5 F 12 15 9 G 24 15 5 H 24 15 7 解决scheme表: 点击查看解决scheme示例 Length Width Height Returning Code Match_L Match_W Match_H 10 6 8 C 12 7.4 […]

如何在Excel中将时间调整到最近的小时?

如何在Excel中将时间调整到最近的小时,例如: 67:45:00 will be 68:00:00 and 53:14:00 will be 53:00:00 问候