JenniferMurphy
Well-known Member
- Joined
- Jul 23, 2011
- Messages
- 2,676
- Office Version
- 365
- Platform
- Windows
When I moved from my old Win 10 laptop to my new Win 11 laptop, I neglected to move my personal add-in module (My Add-Ins.xlam) over. So any calls to any code in that add-in, gets changed to some long string. For example, I wrote a Col() UDF that would return the column letter. Now instead of
If I manually delete everything but CODE=vba]=col()[/CODE], it works.
I can use Replace to fix all calls in an entire workbook, but is there a way I can fix all calls in all workbooks? Or do I need to do each workbook individually as punishment for doing the migration wrong?
=col()
, I see something like this:
Excel Formula:
=@'C:\Documents and Settings\Administrator\Application Data\Microsoft\AddIns\My Add-Ins.xlam'!col()
If I manually delete everything but CODE=vba]=col()[/CODE], it works.
I can use Replace to fix all calls in an entire workbook, but is there a way I can fix all calls in all workbooks? Or do I need to do each workbook individually as punishment for doing the migration wrong?