Hi all
I've put together an add-in to circulate some company-specific date functions and some related functions. The add-in includes a couple of userforms (a help form and a calculator form), both of which have a combo box to display the list of available functions. The list is populated from a named range within the add-in - the sheets is called "DatesHelp" and the range "DHFunctions".
While I was developing the forms with the file saved as a standard workbook, the following syntax in the RowSource for the combo boxes worked fine:
DatesHelp!DHFunctions
However, as soon as I saved it as an add-in, the combo boxes lost their contents. (There are other combo boxes on the forms also populated from named ranges, and these were similarly affected.) If I set the IsAddin property of the add-in to False while it's installed, the contents reappear!
I've created add-ins before, but this is the first time that I've tried to use data saved on the add-in's worksheets in a userform. Is this normal behaviour for an add-in, and if not, how do I fix it?