Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a table that I made by taking array list and storing it into another array list and it is composed of strings and doubles. Now I want to apply formulas to the doubles in the Table and I am wondering how to do this. And is there any way for them to update if the numbers in the table change ?

share|improve this question
1  
Any code to show? And how is MS excel used here? – Adel Sep 20 '11 at 1:34
1  
I just save the excel file in csv = comma separated value and than I just interpret it as I like so any column wit a number is a number Only column. I asked if it is possible and how would I go about it I don't need a certain code for advice now do I ? – ashley smith Sep 20 '11 at 1:37
Well, it's a little confusing to me. When you say And is there any way for them to update if the numbers in the table change - you mean update if the numbers in the Excel table change? Thanks – Adel Sep 20 '11 at 1:40
1  
yes like let say I have a row in which I had column one to column two so the row looks like this 1,2,3 and than I change the row to 1,3,4 – ashley smith Sep 20 '11 at 1:50
@ashleysmith: re "I don't need a certain code for advice now do I ?": No need to get snippy. You're not obliged to provide code, but it would be helpful, because (even after reading the comments) your problem is still overall pretty unclear (to me). – accolade Mar 10 '12 at 15:46

1 Answer

up vote 1 down vote accepted

org.apache.poi.ss.usermodel.FormulaEvaluator has an evaluate() method that may be useful in this context. There's an example here.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.