That makes sense but to reiterate you can just use Application.Pi, the below
Dim Pi As Double: Pi = PI()
is not a valid VBA expression... ie you were trying to use Native XL syntax in VBA which isn't going to work I'm afraid unless encased within an Evaluate call, eg:
Dim Pi As Double: Pi = Evaluate("PI()")
Or as outlined using VBA syntax, either of:
Dim Pi As Double: Pi = Application.Pi
Dim Pi As Double: Pi = WorksheetFunction.Pi
Hopefully this will help you as you move forward and use other Native Functions directly from VBE.
Bookmarks