Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 1 of 1

Thread: cell formula not get value

  1. #1
    Member
    Join Date
    Jun 2017
    Posts
    46
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default cell formula not get value

    risolto:

    public void fillVeicoloDataFineValidita() {
    		for (int rowIndex = 1; rowIndex < dataTypeSheet.getPhysicalNumberOfRows(); rowIndex++) {
    			currentRow = dataTypeSheet.getRow(rowIndex);
    			try {
    				cell_data_fine_validita = currentRow.getCell(29).getDateCellValue(); // Cella AD
    				if (cell_data_fine_validita != null)
    					data_fine_validita.add(cell_data_fine_validita.toString());
    			} catch (NotImplementedException e) {
    				e.printStackTrace();
    			}
     
    		}
     
    		System.out.println(data_fine_validita.toString());
    	}
    Last edited by glprobot; July 30th, 2019 at 07:21 AM.

Similar Threads

  1. Two ArrayLists don't cycle thru formula
    By CiscoKid in forum Loops & Control Statements
    Replies: 1
    Last Post: January 2nd, 2019, 06:41 AM
  2. Quadratic formula
    By sevengreen7 in forum What's Wrong With My Code?
    Replies: 1
    Last Post: October 3rd, 2014, 04:34 PM
  3. Mistake in formula?
    By UndersKore in forum What's Wrong With My Code?
    Replies: 1
    Last Post: March 9th, 2014, 11:51 AM
  4. Issue while set formula for Excel cell
    By vinothparthasarathy in forum What's Wrong With My Code?
    Replies: 0
    Last Post: December 15th, 2013, 09:02 AM
  5. Heron's Formula
    By guneet.oct10@gmail.com in forum What's Wrong With My Code?
    Replies: 3
    Last Post: February 6th, 2013, 08:24 AM