I don't use it much either but I did use it recently as is an alternate way to do powers.
This Log is the natural Log e AKA Ln, Not Log base 10.
I used this idea for String Math to do powers:
PS I think I recall Steve using it to get the number of digits in a number?
Update: that's in Wiki for a long pos integer.
This Log is the natural Log e AKA Ln, Not Log base 10.
I used this idea for String Math to do powers:
Code: (Select All)
' alternate to power 5 ^ 5
Print 5 ^ 5
Print Exp(5 * Log(5))
PS I think I recall Steve using it to get the number of digits in a number?
Update: that's in Wiki for a long pos integer.
b = b + ...