We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d16efa commit 0fae551Copy full SHA for 0fae551
CS/Scripts/Ribbon.cs
@@ -923,9 +923,9 @@ public void SeparateValues()
923
924
for (int i = 1; i <= m + 1; i++) // by row
925
{
926
- string cellValue = tbl.Range.Cells[i, columnIndex].Value2.ToString();
927
- if (string.IsNullOrEmpty(cellValue) == false)
+ if (tbl.Range.Cells[i, columnIndex].Value2 != null)
928
+ string cellValue = tbl.Range.Cells[i, columnIndex].Value2.ToString();
929
string[] metadata = cellValue.Split(Properties.Settings.Default.Table_ColumnSeparateValuesDelimiter);
930
int countValues = metadata.Length - 1;
931
if (countValues > 0)
0 commit comments