When trying the code below, my desired output is "8,000 dollars" but it shows up as "8000 dollars" without the comma. If I comment out the SetCellValue line, I do get "8,000". Am I doing this incorrectly? I want to maintain the numberformat and append text at the end.
Aspose.Grid.Desktop.GridCell cell = mainWorkSheet.Cells[row, column];
Style formulaStyle = cell.GetStyle();
formulaStyle.NumberFormat = 3;
formulaStyle.CellLocked = cellLocked;
cell.SetStyle(formulaStyle);
cell.Value = "=(8*1000)";
cell.SetCellValue(cell.Value + " dollars");