Description: how to split 1 cell in libreofice? without having to insert a new column and then connect every pair of cells except the one that needed to be separated? lire in MC excel. EDITING Steps to Reproduce: try out to separate one cell in two ones without adding a new column. Actual Results: unfortunately you'll need to add a new column and later fuse all new couples of cells except on the single row that you needed. Expected Results: I don;t know how to improve that but deepseek sujested: Possible solutions: Use cell pooling (as a temporary crutch): Create several cells (by inserting rows/columns), then combine the unnecessary parts. It's inconvenient, but it works without modifications. Create a macro or extension: You can write a script in Python or LibreOffice Basic that automates row/column insertion and merging. An example of a simple macro: basic Copy Sub SplitCellVertically() Dim oSheet As Object Dim oCell As Object oSheet = ThisComponent.CurrentController.ActiveSheet oCell = oSheet.getCurrentSelection() ' Inserting the column on the right oSheet.Columns.insertByIndex(cell.Cell Address.Column + 1, 1) End Sub More complex scripts can simulate "separation" through automatic border management. Reproducible: Always User Profile Reset: No Additional Info: screenshots of design-problem: https://t.me/jhauhgy/99 https://t.me/jhauhgy/100
Created attachment 200085 [details] a screenshot of cells in different rows. I wanted to attach one more screenshot but this page don't allow to attach more then one so you can open via link to my group in telegram. also thek you very much developers for open source free soft. Wishing everything goof to you
if you need to contact me: t.me/yojiknadache .
Created attachment 200086 [details] with marker
thanks.