There is no Log(number, base) function in Excel VBA for three reasons:
- Log(number, base) = Log(number)/Log(base), where "Log" on the right-hand side of this expression is the VBA Log function.
- The designers of VBA assumed you know that Log(number, base) = Log(number)/Log(base).
- The designers of VBA did not want to create the function Log(number, base) knowing that Log(number, base) = Log(number)/Log(base) is true and can be used instead of Log(number, base).