Forum Discussion
tamsynels
Feb 25, 2020Copper Contributor
User Based Function Name Error
I have a problem with a user based function i am doign for an online course. I dont know why i am getting a name error cause i checked the spelling and the syntax and i think its all correct. Are my ...
ChrisMendoza
Feb 25, 2020Iron Contributor
You did not include 't' in your arguments.
Function antoine(a As Double, b As Double, c As Double, t As Double) As Double
antoine = 10 ^ a - (b / (t + c))
End Function