Hi, I have an excel file with mannually input functions, which use an add-in from a third party. I want to use functionalities of the excel file in Java. I could think of two ways of doing it.
code the functions in VBA, or VB with excel reference, then generate .dll or .exe files for Java to use.
Feed data to excel file using jxl (would excel file update automatically when it receives new data?), then read the new result everytime from the excel file.
I don't have much experience with excel or VBA. I want to know which method is more doable and faster.
Thanks!