My group is currently using Excel workbooks to track employee performance. Each employee has his own workbook, and they are identical, except for the data entered by the user. This book has custom VBA formulas that take data and generate a point base.
What I would like to do is move these formulas to another book, so if the calculation needs to be changed, it can be changed in one source document, and not in hundreds of books.
I imagine something like ...
='[Source Formula Workbook.xlsm]'!Formula_A(A1, A2, A3...)
... where A1, A2, A3 are cells in the user's workbook, and this returns the Formula_A value from my hypothetical source book. What is the right way to accomplish this?
source
share