Hi all,
New to excel development, so I have an elementary question. I'm looking to create a UDF that will allow a user to input a string that gets sent to a Web Api, and then returns data.
I was able to use the AsyncBatch example to set up a version of my idea that queues up multiple 1 cell instances of the call to this api, but performance is pretty bad, since it's making a new request for each lookup.
Then I changed my batch so instead of creating a new request, it just populated a concurrentQueue of values to look up using the API (the handler would send fewer requests with multiple lookup values in the post body),
however it seems (
https://groups.google.com/forum/#!topic/exceldna/_HV8rtrMuwc) that there's not a great way for me to take this array of asynchronously returned values and update the original cells each value was associated with.
Am I going down the right path here, or is my architecture of how one would achieve something like this in Excel misguided? Should I be looking into creating an RTD or something instead?
Thanks,
Kris