我正在构建一个非常复杂的 VBA 工作簿,运行大部分代码的问题之一是性能。我有一个内置函数,或多或少,以下
Public Function zzz (xxx as String) as String
if xxx = "apple" then zzz = "orange"
if xxx = "appple2" then zzz = "orange2"
if xxx = "apple3" then zzz = "apple3"
等等(但用大约 30 个字符串代替)。我多次调用这个函数。有一个更好的方法吗?