I'm trying to get the return value from an Excel function that i called from a python.
I always get a None
value.
Here is the excel function :
Public Function GetString()
GetString = "aa"
End Function
And Here is the call :
xlApp.Run('ThisWorkbook.GetString')
Returned :None
I have no problem getting in the specified function since I tried to modify a cell value from it and it worked.
Am I missing anything ?