Jokacave, if you want to have the formula calling the UDF stored in each cell in testnovo.xls you would really need to have the function stored in testnovo.xls itself rather than testaccao.xls.
If you just wish to return the results as static values there are other options open to you... eg:
I would make the point that all of your routines in TesteAccao.xls should reside in Module1 ... not ThisWorkbook... ThisWorkbook should really be reserved for Workbook level events.
I've not reviewed your code in full but have altered a few pieces in the above... note I moved all of your Declarations to the top of the Module (Dim) and also altered the Integer types to Long... Integer in 32-bit VBA is converted to Long so it makes sense to simply use Long (if the likes of Byte not guaranteed to be viable)... I also changed the InputBox to Application.InputBox which allows you to add a Type which will restrict data entry to viable types (ie 1 = number) ... you should add further handlers to account for invalid number being entered etc... as I say not complete code but hopefully enough to point you in the right direction.
Bookmarks