https://issues.apache.org/bugzilla/show_bug.cgi?id=46119

           Summary: fix shift rows
           Product: POI
           Version: 3.5-dev
          Platform: PC
        OS/Version: Mac OS X 10.4
            Status: NEW
          Severity: normal
          Priority: P2
         Component: XSSF
        AssignedTo: [email protected]
        ReportedBy: [EMAIL PROTECTED]


Created an attachment (id=22787)
 --> (https://issues.apache.org/bugzilla/attachment.cgi?id=22787)
patch shift rows

this patch fix the method XSSFSheet.shiftRows()
the problem was that on shifting rows  cells reference remaining unchanged.

before patch

- <row r="2">
- <c r="C6" t="n">
  <v>3.0</v> 
  </c>
  </row>
- <row r="3">
- <c r="D7" t="n">
  <v>4.0</v> 
  </c>
  </row>



after patch

- <row r="2" spans="3:5">
- <c r="C2">
  <v>3</v> 
  </c>
  </row>
- <row r="3" spans="3:5">
- <c r="D3">
  <v>4</v> 
  </c>
  </row>


-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to