I have a C# feeder that generates some data and sends them to some sort of frontend. Is there a direct way in which I can receive these data using excel microsoft office ?
P.S. I do not want to write a code that recieves the data and then writes it into excel sheet. I want to be able to directly get the data from excel itself, as a frontend for my C# backend. Is that ever possible ?!
I have a C# feeder that generates some data and sends them to some
Share
I did a quick dr. Google search for WebService calls from Excel and found the following article
As Excel has the possibility to access data (from different dataSources) it may be a proper solution to create a c# WebService which delivers the requested data.
Pls note that this is not my code – it’s just a copy from the mentioned article – so credit goes to the author!
I just thought about another solution. You may consider making your own C# com component. Within any excel VBA code you are now able to call any method within your assembly. Once again mr. google found an article describing how to achieve this!
c# code for your own com component
VBA code within an excel macro