need help with creating ln (natural log) function in vba
1. In VBA, Log(x) does return the natural log of x. 2. Your function declaration should be: Public Function ln(ByVal x as double) As Double 3. You declared e as double, but then you assigned it a string: "2.71828" by enclosing it in quotation marks. 4. Lo...