How to get the value of a cell at a specified position in an excel sheet using JAVA

15,835

You probably want to use the CellReference utility class to help you out.

You can then do something like:

 Sheet sheet = workbook.getSheet("MyInterestingSheet");

 CellReference ref = new CellReference("B12");
 Row r = sheet.getRow(ref.getRow());
 if (r != null) {
    Cell c = r.getCell(ref.getCol());
 }

That will let you find the cell at a given Excel-style reference

Share:
15,835
Kartik P
Author by

Kartik P

Updated on June 15, 2022

Comments

  • Kartik P
    Kartik P almost 2 years

    How to get the value of a specific cell from a .xlsm file using java ..?? I want to fetch the cell value by specifying the particular row and column for example i need the cell value at row 1 and column C1 or row5 and column C6 ... I am getting the values by specifying the row and column number like this

    XSSFRow row = sheet.getRow(4); // 4 is the row number

    cell = row.getCell(4); // 4 is the column number

    But this is working only if the sheet has column starting from A,B,C,D...so on...when i try with the same coding to fetach another sheet but it does not work... In this sheet, column starts from C,D,E ... so on

    Can any one help me out to get to know what can i use therr to get the specified result ?

  • Gagravarr
    Gagravarr over 11 years
    Great, glad it did! Please mark the answer as accepted when you have a minute (click the tick next to the question), so that others in future know it works
  • EMM
    EMM about 8 years
    @Gagravarr How about reading a value that spans multiple columns like B3:G3?
  • Gagravarr
    Gagravarr about 8 years
    @EMM As in a merged cell? If so, just read the top-left hand cell to get the value out
  • EMM
    EMM about 8 years
    @Gagravarr Thanks for the helping me out mate. Is it always true that value in a merged cell will always be at the top-left hand cell?