I am returning after several years absence and my old excel manufacturing spreadsheets don’t update anymore. The old sheets had eve central market API connections.
Can someone please advise me as to the best solution to fixing my sheets?
I prefer to fix the sheets with new connections if possible and not rebuild new sheets from zero.
Which has the ID of an item at A9 and returns the Jita sell price.
I use single calls since I don’t want the prices of everything, just the relatively few items I manufacture.
Isk Per Hour can do this in a couple of button presses once set up. In my case however I want big alarms telling me which items I can sell for lots of ISK but don’t have in stock!
you should factor all your calls together : you make a list of the ids, then create the correct URL, and call it once
so one cell with =WEBSERVICE(“marketer?typeid=”&join(’,’,ids) ; with ids being the range of the ids (like is done in that cheat)
And then each cell for the price is filterxml(A15, “//type[@type_id=”&B4&"]/sell/min") ; with A15 being the cell that holds the webservice result, and B4 the id you want.
This way you only have one single API call (for up to 200 ids) and it’s much faster to update (add a hash at the end, that is added after each URL ; change the hash=> force refresh)
Ah, I guessed there might be some way of doing this (takes notes).
As it is right now Excel takes about half a minute to refresh everything for me, which isn’t a bother as I only refresh once a day minimum. My ESI stuff takes as long to download.
[added}
After some trial and error the Excel versions could be: