I am using a custom Excel addin which exports several functions to Excel which do a lot of "behind the scenes" work. I want to force Excel to evaluate calls to these functions in a particular order. That is, if
A1 = AddinFunction("Foo")
and
B3 = AnotherAddinFunction("Bar")
then I want to force Excel to evaluate A1 before B3. How can I achieve that with mininum hacking, and preferably without using VBA?