Create rows or table inside cell in excel [closed]
I am using apache poi creating the excel. I want to create the structure shown in above image.
I am not aware how to customise as per the image.
java apache-poi
closed as too broad by Mark Rotteveel, greg-449, Erik Kalkoken, AmanicA, Matt Raines Nov 15 '18 at 13:58
Please edit the question to limit it to a specific problem with enough detail to identify an adequate answer. Avoid asking multiple distinct questions at once. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
add a comment |
I am using apache poi creating the excel. I want to create the structure shown in above image.
I am not aware how to customise as per the image.
java apache-poi
closed as too broad by Mark Rotteveel, greg-449, Erik Kalkoken, AmanicA, Matt Raines Nov 15 '18 at 13:58
Please edit the question to limit it to a specific problem with enough detail to identify an adequate answer. Avoid asking multiple distinct questions at once. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
1
Which aspect is unclear to you? How to create merged cells?
– Hulk
Nov 15 '18 at 7:37
1
Possible duplicate of Merging cells in Excel using Apache POI
– Hulk
Nov 15 '18 at 7:40
add a comment |
I am using apache poi creating the excel. I want to create the structure shown in above image.
I am not aware how to customise as per the image.
java apache-poi
I am using apache poi creating the excel. I want to create the structure shown in above image.
I am not aware how to customise as per the image.
java apache-poi
java apache-poi
edited Nov 15 '18 at 7:36
Hulk
3,42812142
3,42812142
asked Nov 15 '18 at 7:17
jagadeesan.pjagadeesan.p
213
213
closed as too broad by Mark Rotteveel, greg-449, Erik Kalkoken, AmanicA, Matt Raines Nov 15 '18 at 13:58
Please edit the question to limit it to a specific problem with enough detail to identify an adequate answer. Avoid asking multiple distinct questions at once. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
closed as too broad by Mark Rotteveel, greg-449, Erik Kalkoken, AmanicA, Matt Raines Nov 15 '18 at 13:58
Please edit the question to limit it to a specific problem with enough detail to identify an adequate answer. Avoid asking multiple distinct questions at once. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
1
Which aspect is unclear to you? How to create merged cells?
– Hulk
Nov 15 '18 at 7:37
1
Possible duplicate of Merging cells in Excel using Apache POI
– Hulk
Nov 15 '18 at 7:40
add a comment |
1
Which aspect is unclear to you? How to create merged cells?
– Hulk
Nov 15 '18 at 7:37
1
Possible duplicate of Merging cells in Excel using Apache POI
– Hulk
Nov 15 '18 at 7:40
1
1
Which aspect is unclear to you? How to create merged cells?
– Hulk
Nov 15 '18 at 7:37
Which aspect is unclear to you? How to create merged cells?
– Hulk
Nov 15 '18 at 7:37
1
1
Possible duplicate of Merging cells in Excel using Apache POI
– Hulk
Nov 15 '18 at 7:40
Possible duplicate of Merging cells in Excel using Apache POI
– Hulk
Nov 15 '18 at 7:40
add a comment |
1 Answer
1
active
oldest
votes
You can use
sheet.addMergedRegion(new CellRangeAddress(rowFrom,rowTo,colFrom,colTo));
And specify the row numbers and column numbers accordingly.
Thanks for the answer. I will try to use the CellRangeAddress and come back
– jagadeesan.p
Nov 15 '18 at 8:13
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can use
sheet.addMergedRegion(new CellRangeAddress(rowFrom,rowTo,colFrom,colTo));
And specify the row numbers and column numbers accordingly.
Thanks for the answer. I will try to use the CellRangeAddress and come back
– jagadeesan.p
Nov 15 '18 at 8:13
add a comment |
You can use
sheet.addMergedRegion(new CellRangeAddress(rowFrom,rowTo,colFrom,colTo));
And specify the row numbers and column numbers accordingly.
Thanks for the answer. I will try to use the CellRangeAddress and come back
– jagadeesan.p
Nov 15 '18 at 8:13
add a comment |
You can use
sheet.addMergedRegion(new CellRangeAddress(rowFrom,rowTo,colFrom,colTo));
And specify the row numbers and column numbers accordingly.
You can use
sheet.addMergedRegion(new CellRangeAddress(rowFrom,rowTo,colFrom,colTo));
And specify the row numbers and column numbers accordingly.
answered Nov 15 '18 at 7:21
Pooja AggarwalPooja Aggarwal
870212
870212
Thanks for the answer. I will try to use the CellRangeAddress and come back
– jagadeesan.p
Nov 15 '18 at 8:13
add a comment |
Thanks for the answer. I will try to use the CellRangeAddress and come back
– jagadeesan.p
Nov 15 '18 at 8:13
Thanks for the answer. I will try to use the CellRangeAddress and come back
– jagadeesan.p
Nov 15 '18 at 8:13
Thanks for the answer. I will try to use the CellRangeAddress and come back
– jagadeesan.p
Nov 15 '18 at 8:13
add a comment |
1
Which aspect is unclear to you? How to create merged cells?
– Hulk
Nov 15 '18 at 7:37
1
Possible duplicate of Merging cells in Excel using Apache POI
– Hulk
Nov 15 '18 at 7:40