Jack Williams
Jack Williams
If you disable "automatically format grid formulas" you can use Ctrl-Shift-F (or right-click "Format document") to format formulas, and these _will_ be preserved in the Excel cell. This wont be...
I do not think there is anyway to see custom functions registered by other add-ins using `office-js`. This is something need needs to be added to the API, and not...
> Is there a simple way to copy these functions into a gist? No, unfortunately. There used to be a way to export these names but it got removed in...
> > > Is there a simple way to copy these functions into a gist? > > No, unfortunately. There used to be a way to export these names but...
> `T extends oneof(A, B, C)` means that at least one of `T extends A`, `T extends B`, `T extends C` holds. ~~That is what a union constraint does.~~ Do...
True! No I wasn't, but I had parsed it in my head like `(T extends A) | (T extends B) | (T extends C)`.
I am working on an update to AFE that will support loading and saving with workbooks in locales using ";" as an argument separator. Within AFE, you will still be...
We have just updated AFE to support some localization, in particular: - AFE is now usable when using `;`. You still need to author in AFE using `,`, but we...
We have just released an update than now allows you to author formulas using the locale's separators.  In the modules tab, use `;;` to separate definitions when `;` is...
The localization we use is not available as an API. If it fits within your constraints, one workaround might be to use the range API to translate: - Write to...