Member 11237425 Ответов: 1

Как найти пустые строки в excel с помощью closedxml


как найти и удалить пустые строки в закрытом xml

Что я уже пробовал:

<pre>foreach (IXLRow theRow in theworksheet.Rows())
                    {
                        int row = theworksheet.LastRowUsed().RowNumber();
                        if (firstRow)
                        {
                            int cells = 0;
                            foreach (IXLCell cell in theRow.Cells())
                            {
                                cells++;

                                if (cells > 27)
                                {
                                    break;
                                }
                                else
                                {
                                    dt3.Columns.Add(cell.Value.ToString());
                                }
                            }
                            firstRow = false;
                        }

1 Ответов

Рейтинг:
1

Karthik_Mahalingam

Цитата:
как найти и удалить пустые строки в закрытом xml

пробовать
int lastrow  = ws.LastRowUsed().RowNumber();
            var rows = ws.Rows(1, lastrow);
            foreach (IXLRow row in rows)
            {
                if (row.IsEmpty())
                    row.Delete();
            }

относиться ClosedXML-Документация[^]