Hi i'm learnin VBA, and not familiar with it
So I wanted to create didve function where value would be devided to value 2
My code is
Function DIVIDE(value1, value2)
    Dim result As Currency
        result = value1 / value2
End Function
I know, it must be very simple, but I cannot get it working...