Hello!
By trying to develope one very complex worksheet calculation, i have learned a bit of VB and now i'm thinking in a whole new level to create excell functions easier.
I have created "SINUS" function (see code below). I renamed it to SIN, but excell would use the original sin function. Can I redefine the original one to mine or remove it?
Code:Function SINUS(ByVal Value As Integer)
br = "=SIN(RADIANS(" & Value & "))"
SINUS = Evaluate(br)
End Function
