We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Description
When duplicating a row with multiple merged cells, the cells that are used correctly are not copied.
Perhaps this i++ skips the loop step.
i++
https://github.com/360EntSecGroup-Skylar/excelize/blob/77978ac68d3808060e58df41ebede4b9f3631641/rows.go#L605
Steps to reproduce the issue: 1.
f, err := excelize.OpenFile("../../.ignore/B.xlsx") if err != nil { panic(err) } sheet := f.GetSheetName(0) err = f.DuplicateRowTo(sheet, 1, 3) if err != nil { panic(err) } err = f.SaveAs("../../.ignore/B_.xlsx") if err != nil { panic(err) }
Describe the results you received:
Describe the results you expected:
Want the same thing as the 1 col to be the 3 col.
Output of go version:
go version
go 1.15
Excelize version or commit ID:
77978ac68d3808060e58df41ebede4b9f3631641
The text was updated successfully, but these errors were encountered:
5c6bdf6
This closes #752, fix incorrectly merged cells on duplicate row, and …
576bfff
…new formula function: LOWER, PROPER, UPPER
Thanks for your issue. I have fixed it, please try to use the master branch code, and this patch will be released in the next version.
Sorry, something went wrong.
This closes qax-os#752, fix incorrectly merged cells on duplicate row…
9804f45
…, and new formula function: LOWER, PROPER, UPPER
No branches or pull requests
Description
When duplicating a row with multiple merged cells, the cells that are used correctly are not copied.
Perhaps this
i++
skips the loop step.https://github.com/360EntSecGroup-Skylar/excelize/blob/77978ac68d3808060e58df41ebede4b9f3631641/rows.go#L605
Steps to reproduce the issue:
1.
Describe the results you received:
Describe the results you expected:
Want the same thing as the 1 col to be the 3 col.
Output of
go version
:Excelize version or commit ID:
The text was updated successfully, but these errors were encountered: