Sub CallerSub() Ans = CubeRoot(125) MsgBox AnsEnd SubFunction CubeRoot(number) CubeRoot = number ^ (1 / 3)End Function