LOG(number, [base])
=LOG(16, 2)
The LOG function is used to find the logarithm of a number with a given base. For example, this returns 4 because 16 is the number and 2 is the base. This means that 2 to the power of 4 is equal to 16.
=LOG(100)
If no base is specified, the LOG function assumes that the base is 10. For example, this returns 2 because 10 to the power of 2 is equal to 100.
=LOG(100,10)
The LOG function can also be used to find the logarithm of a number with a specific base. For example, this returns 2 because 10 to the power of 2 is equal to 100.
The LOG function takes two arguments, a number (required) and a base (optional). It is used to calculate the logarithm of the number with the given base.