In old excel visual basic it was easy to create and use a function. You create a function in Vb:
public function testing() testing = "this is the result" end function
Then in excel you put "=testing()" in your cell.
In Visual Studio 2010 I am creating a new Excel Workbook project, putting the functions code into Sheet1.vb and saving.
But in 2010 excel sheet my function is not showing up. I tried putting the code into the VisaulBaseic of the spreadsheet with the same null result.
Incredibly to me I cant find a simple example of this in the whole web, hence this call for help.
Are there new steps I am missing?
Regards